/**
 * Estilos para a landing page da Ferfa Gás
 * 
 * @author Roka Digital - https://rokadigital.com.br/contato/
 */

:root {
    /* Paleta Supergasbras */
    --laranja-primaria: #D33100;
    --preto: #000000;
    --branco: #FFFFFF;
    --cinza-escuro: #575756;
    
    /* Variações da paleta principal */
    --laranja-claro: #FF6B47;
    --laranja-escuro: #B82800;
    --cinza-claro: #f5f5f5;
    --cinza-muito-claro: #f9fafb;
    --cinza-medio: #9CA3AF;
    
    /* Gradientes com a nova paleta */
    --gradiente-laranja: linear-gradient(135deg, #D33100, #FF6B47);
    --gradiente-escuro: linear-gradient(135deg, #575756, #000000);
}

/* Reset e configurações globais - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .logo img {
        max-height: 40px !important;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 18px;
    }
    
    .logo img {
        max-height: 70px !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--cinza-escuro);
    background-color: var(--cinza-muito-claro);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    color: #002D72;
}

/* Remover linha sublinhada padrão dos títulos de seção */
.section-title::after {
    display: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Header e navegação */
.header {
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 0;
}

@media (max-width: 768px) {
    .header {
        padding: 0;
        min-height: 70px;
    }
    
    .header-container {
        justify-content: center !important;
        position: relative;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .logo img {
        max-height: 50px !important;
    }
    
    /* Ocultar menu hamburger e navegação no mobile */
    .mobile-menu-btn {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    color: #000000;
}

.logo img {
    max-height: 50px !important;
    width: auto;
    transition: all 0.3s ease;
    height: auto;
    margin: 5px 0;
}

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

.nav-item {
    margin-left: 20px;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
}

/* Hero section */
.hero {
    background: url('../img/hero_gasfamiliacuritiba.webp?v=1') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--preto);
    padding: 110px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    max-width: none;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    opacity: 1;
    line-height: 1.4;
    max-width: none;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons .btn {
    padding: 22px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    min-height: 60px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero-buttons .btn-whatsapp {
    background: var(--gradiente-laranja);
    color: white;
    border: none;
}

.hero-buttons .btn-phone {
    background: var(--gradiente-escuro);
    color: white;
    border: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    text-align: center;
    min-height: 88px;
    min-width: 180px;
    max-width: 240px;
    position: relative;
    overflow: hidden;
    animation: pulse-glow-hero 3s ease-in-out infinite;
}

.btn-whatsapp {
    background: var(--gradiente-laranja);
    color: white;
    box-shadow: 0 8px 32px rgba(211, 49, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 49, 0, 0.3) 0%, transparent 70%);
    animation: pulse-light-orange 3s ease-in-out infinite;
    z-index: -1;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: var(--laranja-escuro);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(211, 49, 0, 0.6);
}

.btn-phone {
    background: var(--gradiente-escuro);
    color: white;
    box-shadow: 0 8px 32px rgba(87, 87, 86, 0.6);
    position: relative;
    overflow: hidden;
}

.btn-phone::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 49, 0, 0.3) 0%, transparent 70%);
    animation: pulse-light-orange 3s ease-in-out infinite;
    z-index: -1;
}

.btn-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-phone:hover::before {
    left: 100%;
}

.btn-phone:hover {
    background: var(--preto);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
}

.btn-gps {
    background: var(--gradiente-laranja);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-gps::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-gps:hover::before {
    left: 100%;
}

.btn-gps:hover {
    background: var(--laranja-escuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 49, 0, 0.4);
    text-decoration: none;
    color: white;
}

.btn-primary {
    background: var(--gradiente-verde-cian);
    color: var(--preto);
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.btn-secondary {
    background-color: var(--branco);
    color: var(--azul);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Seção de produtos */
.produtos {
    background-color: var(--cinza-claro);
    padding: 80px 0;
}

.produtos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

.produto-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
}

/* Responsividade do grid de produtos */
@media (max-width: 900px) {
    .produto-card {
        flex: 0 1 calc(50% - 15px);
        min-width: 250px;
    }
}


/* Mobile first - força 1 coluna */
@media (max-width: 480px) {
    .produto-card {
        flex: 0 1 100%;
        min-width: auto;
    }
    
    .produtos-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    /* Otimizações adicionais mobile */
    .hero {
        padding: 100px 0 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: auto;
        max-width: 280px;
        padding: 16px 20px;
        font-size: 0.95rem;
        min-height: 52px;
    }
}

.produto-card {
    background: var(--branco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    min-height: 420px;
    max-height: 480px;
}

.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--laranja-primaria);
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 10;
}

.produto-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--cinza-muito-claro) 0%, var(--cinza-claro) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.produto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(0, 15, 255, 0.05), transparent);
    transition: height 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.produto-card:hover::before {
    height: 100%;
}

.produto-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
    max-width: none;
    max-height: none;
}

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

.produto-info {
    padding: 20px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produto-nome {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    text-align: center;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-nome::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradiente-azul-cian);
    border-radius: 2px;
}

.produto-descricao {
    margin-bottom: 16px;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    min-height: 3.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto-preco {
    font-size: 1.5rem;
    font-weight: 800;
    color: #002D72;
    margin-bottom: 18px;
    text-align: center;
    min-height: 2rem;
}

.preco-consulte {
    color: var(--cinza-escuro) !important;
    font-style: italic;
    font-size: 1.2rem;
}

.produto-variacoes {
    margin-bottom: 15px;
}

.variacoes-label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
    display: block;
    text-align: center;
}

.variacoes-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #002D72;
    border-radius: 8px;
    background-color: var(--branco);
    font-size: 1rem;
    font-weight: 600;
    color: #002D72;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002D72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
    box-shadow: 0 2px 8px rgba(0, 45, 114, 0.1);
}

.variacoes-select:hover {
    border-color: #E30613;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 15, 255, 0.1);
}

.variacoes-select:focus {
    outline: none;
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(0, 15, 255, 0.1);
}

.variacao-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background-color 0.2s ease;
}

.variacao-item:hover {
    background-color: rgba(255,255,255,0.7);
}

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

.variacao-nome {
    font-weight: 600;
    color: var(--azul);
}

.variacao-preco {
    color: var(--preto);
    font-weight: 700;
    background: linear-gradient(90deg, rgba(0,255,0,0.1), rgba(0,255,255,0.1));
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.produto-acoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding: 0;
}

.produto-link {
    text-align: center;
    padding: 0 15px 15px;
}

.ver-detalhes {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

.ver-detalhes::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--laranja-primaria);
    transition: width 0.3s ease;
}

.ver-detalhes:hover {
    color: #3b82f6;
    text-decoration: none;
}

.ver-detalhes:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 4px 0;
    width: 100%;
    color: white !important;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.produto-btn {
    width: 100%;
}

.btn-pedido-rapido {
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: white;
    border: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-pedido-rapido::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-pedido-rapido:hover::before {
    left: 100%;
}

.btn-pedido-rapido:hover {
    background: var(--laranja-escuro);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 49, 0, 0.4);
}

.btn-pedido-detalhado {
    background: var(--laranja-primaria);
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-pedido-detalhado::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-pedido-detalhado:hover::before {
    left: 100%;
}

.btn-pedido-detalhado:hover {
    background: #001B4D;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 45, 114, 0.4);
}

.produto-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
    overflow: hidden;
}

.produto-img-modal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.produto-info-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--azul);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 15, 255, 0.2);
}

.produto-info-btn:hover {
    background-color: var(--cian);
    transform: translateY(-3px);
}

.produtos-vazio {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--branco);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.produtos-vazio-icon {
    font-size: 4rem;
    color: var(--cinza);
    margin-bottom: 20px;
    display: block;
}

.produtos-vazio p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

/* Seção de contato */
.contato {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.contato-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contato-header .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 10px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contato-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.contato-card {
    background: var(--branco);
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
    text-align: center;
    height: fit-content;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.contato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contato-card:hover::before {
    transform: scaleX(1);
}

.contato-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 1);
}

.contato-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

.phone-card .contato-card-icon {
    background: #D33100;
}

.whatsapp-card .contato-card-icon {
    background: #25D366;
}

.location-card .contato-card-icon {
    background: #D33100;
}

.schedule-card .contato-card-icon {
    background: #D33100;
}

.contato-card-icon i {
    font-size: 24px;
    color: var(--branco);
    z-index: 2;
    position: relative;
}

.contato-card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.contato-card:hover .contato-card-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

.contato-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.contato-card-content p {
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.contato-card-content .btn-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
}

.contato-card-content .btn-link:hover {
    color: #1d4ed8;
    background: rgba(59, 130, 246, 0.15);
}

.contato-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-container {
    background: var(--branco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    height: 100%;
    min-height: 500px;
}

.map-header {
    padding: 24px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.map-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-header p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1rem;
}

.map-wrapper {
    height: 400px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

/* Footer */
.footer {
    background: #000000;
    color: var(--branco);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-logo {
    margin-bottom: 32px;
}

.footer-logo img {
    max-height: 85px;
    width: auto;
    filter: brightness(1.1);
}

.footer-logo h2 {
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -1px;
}

.footer-description {
    margin-bottom: 32px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 480px;
    font-weight: 400;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: #06b6d4;
    transform: translateX(8px);
}

.footer-contact-item i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--branco);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-contact-item a:hover {
    color: #06b6d4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.footer-social {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-social-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.instagram-link {
    background: linear-gradient(135deg, #E4405F, #833AB4, #F77737);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.footer-b.contato-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contato-link:hover {
    color: #E30613;
    text-shadow: 0 0 8px rgba(227, 6, 19, 0.3);
}

.btn-whatsapp-contato {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    color: inherit;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-contato:hover {
    color: #E30613;
    text-shadow: 0 0 8px rgba(227, 6, 19, 0.3);
}

/* Botão WhatsApp flutuante */
.whatsapp-float-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    pointer-events: none;
}

.whatsapp-float {
    background: var(--gradiente-laranja);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(211, 49, 0, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    pointer-events: auto;
}

.whatsapp-float.online {
    animation: pulse-button 2s infinite;
}

.whatsapp-float.online::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse-glow-hero {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(211, 49, 0, 0.6);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(211, 49, 0, 0.8);
    }
}

@keyframes pulse-light-orange {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes pulse-light-blue {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.whatsapp-float.offline {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    cursor: not-allowed;
    animation: none;
}

.whatsapp-float.offline::before {
    display: none;
}

.whatsapp-float:hover:not(.offline) {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    background: linear-gradient(135deg, #20ba5a, #1ea653);
}

.whatsapp-float i {
    font-size: 20px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.online-indicator {
    background: rgba(37, 211, 102, 0.9);
    color: white;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(211, 49, 0, 0.3);
    animation: pulse-indicator 2s infinite;
    pointer-events: auto;
}

.online-indicator.online::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.online-indicator.offline {
    background: rgba(156, 163, 175, 0.9);
}

.online-indicator.offline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
}

/* Animações */
@keyframes pulse-button {
    0% {
        box-shadow: 0 6px 25px rgba(211, 49, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 35px rgba(211, 49, 0, 0.8);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 6px 25px rgba(211, 49, 0, 0.5);
        transform: scale(1);
    }
}

@keyframes pulse-indicator {
    0% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(211, 49, 0, 0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(211, 49, 0, 0.5);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(211, 49, 0, 0.3);
    }
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.2);
    }
}

@keyframes rotate-light {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Modal de seleção de produtos */
.produtos-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.produtos-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.produtos-modal-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.produtos-modal.active .produtos-modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-title {
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f0f0f0;
    color: #333;
}

.whatsapp-option {
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.whatsapp-option:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.whatsapp-option i {
    font-size: 24px;
}

.whatsapp-text h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
}

.whatsapp-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.produtos-section-title {
    color: #ff9500;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.produto-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 10px;
}

.produto-option:hover {
    border-color: #3b82f6;
    background: #f8faff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.produto-option.selected {
    background: #e8f5e8;
    border-color: #25D366;
}

.produto-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.produto-info-modal {
    flex: 1;
}

.produto-nome-modal {
    font-weight: bold;
    color: #333;
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.produto-preco-modal {
    color: #25D366;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0;
}

.modal-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.btn-pedido-rapido {
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: white !important;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    padding: 22px 20px;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.btn-pedido-detalhado {
    background: var(--laranja-primaria);
    color: white !important;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    padding: 22px 20px;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.btn-pedir-selecionados {
    background: #25D366;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pedir-selecionados:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-pedir-selecionados:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Animações e efeitos */
.fade-in-visible {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Validação de formulários */
.error {
    border: 1px solid #ff3333 !important;
    background-color: #fff8f8;
}

.error-message {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Estilos para filtros de categoria */
.categoria-filtros {
    margin-bottom: 2rem;
}

.filtros-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.filtro-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    background: #f8f9fa;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filtro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 49, 0, 0.2);
    border-color: #D33100;
    color: #D33100;
}

.filtro-btn.ativo {
    background: linear-gradient(90deg, #D33100, #FF8C42);
    color: #FFFFFF;
    border-color: #D33100;
    box-shadow: 0 4px 15px rgba(211, 49, 0, 0.3);
}

.filtro-btn.ativo:hover {
    background: linear-gradient(90deg, #FF8C42, #D33100);
}

@media (max-width: 768px) {
    .filtros-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filtro-btn {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .produtos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1200px;
    }
}

@media (max-width: 992px) {
    .contato-container {
        grid-template-columns: 1fr;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
        margin: 30px auto 0;
        padding: 0 15px;
    }
    
    .produto-badge {
        top: 8px;
        right: 8px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .produto-img-container {
        height: 180px;
    }
    
    .produto-info {
        padding: 15px;
    }
    
    .produto-nome {
        font-size: 1.1rem;
    }
    
    .produto-preco {
        font-size: 1.0rem;
    }
    
    .produto-acoes {
        flex-direction: column;
        gap: 6px;
    }
    
    .produto-info-btn {
        width: 100%;
        height: 32px;
        border-radius: 6px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Forçar grid de produtos em 1 coluna no mobile */
    .produtos-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        margin-top: 30px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
    }
    
    /* Footer responsivo */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-contact-item:hover {
        transform: translateX(0);
    }
    
    .footer-logo h2 {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .social-link {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        background: var(--azul);
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    
    .produto-img-container {
        height: 160px;
    }
    
    .produto-info {
        padding: 15px;
    }
    
    .produto-nome {
        font-size: 1.1rem;
    }
    
    .produto-preco {
        font-size: 1.0rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .nav-brand {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 130px 0 50px;
    }
    
    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        background: url('../img/hero_gasfamiliacuritiba.webp?v=1') no-repeat;
        background-size: cover;
        background-position: 65% center;
        min-height: 400px;
        width: 100%;
        background-attachment: scroll;
    }
    
    .hero-buttons .btn {
        padding: 20px 30px;
        font-size: 1.1rem;
        margin: 8px;
        min-height: 56px;
        font-weight: 700;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    
    .online-indicator {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 30px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .produto-card {
        min-height: auto;
        margin-bottom: 0;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .produto-img-container {
        height: 220px;
    }
    
    .produto-info {
        padding: 20px;
    }
    
    .produto-nome {
        font-size: 1.3rem;
        margin-bottom: 12px;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .produto-descricao {
        color: var(--cinza-medio);
        font-size: 1rem;
        margin-bottom: 18px;
        line-height: 1.6;
        text-align: center;
        flex-grow: 1;
    }
    
    .produto-preco {
        font-size: 1.4rem;
        margin-bottom: 20px;
        font-weight: 700;
        color: #059669;
    }
    
    .produto-variacoes {
        margin-bottom: 20px;
    }
    
    .variacoes-select {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 12px;
        border: 2px solid #e5e7eb;
        background: white;
    }
    
    .produto-acoes {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px 24px;
    }
    
    .btn-pedido-rapido, .btn-pedido-detalhado {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
        min-height: 52px;
        border-radius: 12px;
        font-weight: 600;
    }
    
    .produto-btn {
        padding: 14px 16px;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 8px;
    }
    
    .produto-badge {
        top: 8px;
        right: 8px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .produtos-vazio {
        padding: 40px 20px;
        margin: 20px 0;
    }
    
    .produtos-vazio-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    /* Contato responsivo */
    .contato-container {
        gap: 30px;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .contato-icon {
        margin-bottom: 10px;
    }
    
    .contato-map {
        height: 250px;
        border-radius: 12px;
    }
    
    /* Footer responsivo */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .footer-logo img {
        max-height: 75px;
    }
    
    .footer-social-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-cta {
        padding: 14px 25px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-secondary {
        width: 100%;
        padding: 12px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 5px;
    }
    
    .produto-card {
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }
    
    .produto-img-container {
        height: 180px;
    }
    
    .produto-info {
        padding: 16px;
    }
    
    .produto-nome {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .produto-descricao {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .produto-preco {
        font-size: 1.2rem;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .produto-acoes {
        flex-direction: column;
        gap: 10px;
        padding: 0 16px 16px;
    }
    
    .btn-pedido-rapido, .btn-pedido-detalhado {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
        min-height: 44px;
        border-radius: 10px;
    }
    
    .variacoes-select {
        width: 100%;
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    /* Contato responsivo mobile */
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px; /* Espaço adicional antes do footer */
    }
    
    .contato-card {
        padding: 16px 12px;
        border-radius: 10px;
    }
    
    .contato-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .contato-card-icon i {
        font-size: 18px;
    }
    
    .contato-card-content h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .contato-card-content p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .contato-card-content .btn-link {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .btn-gps {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .contato-map-container {
        margin-top: 30px;
        margin-bottom: 60px; /* Espaço adicional antes do footer */
    }
    
    .contato-map-header h3 {
        font-size: 1.3rem;
    }
    
    .contato-map {
        height: 250px;
        border-radius: 12px;
    }
    
    /* Footer responsivo mobile */
    .footer {
        padding: 35px 0 20px;
    }
    
    .footer-logo img {
        max-height: 65px;
    }
    
    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-contact-item {
        font-size: 0.9rem;
    }
    
    .footer-social-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        border-radius: 14px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 0.85rem;
    }
}

/* Modal de pedido detalhado */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(1);
}

.modal-detalhado {
    max-width: 600px;
    width: 95%;
    max-height: 85vh;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background: var(--laranja-primaria);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 2px 10px rgba(211, 49, 0, 0.3);
}

.modal-header .modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white !important;
}

.modal-header .modal-title i {
    color: white !important;
}

.modal-header .close-modal {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header .close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.form-detalhado {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Seções do formulário simplificado */
.cliente-section,
.produtos-section,
.obs-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

/* Input groups simplificados */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #D33100;
    box-shadow: 0 0 0 3px rgba(211, 49, 0, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #9ca3af;
    font-size: 15px;
}

/* Row para inputs lado a lado */
.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Título da seção de produtos */
.produtos-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.produtos-title::before {
    content: '🛒';
    font-size: 18px;
}

/* Seletor de produtos simplificado */
.produto-selector-simple {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.produto-select {
    flex: 1;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.produto-select:focus {
    outline: none;
    border-color: #D33100;
    background: white;
    box-shadow: 0 0 0 3px rgba(211, 49, 0, 0.1);
}

.btn-add-simple {
    background: var(--laranja-primaria);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
}

.btn-add-simple:hover {
    background: #B82800;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(211, 49, 0, 0.3);
}

/* Lista de produtos simplificada */
.produtos-lista-simple {
    min-height: 60px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px;
}

.produtos-lista-simple:empty::before {
    content: 'Nenhum produto adicionado';
    color: #9ca3af;
    font-style: italic;
    display: block;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* Item de produto na lista simplificada */
.produto-item-simple {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.produto-item-simple:hover {
    border-color: #D33100;
    box-shadow: 0 2px 8px rgba(211, 49, 0, 0.1);
}

.produto-info-simple {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.produto-nome-simple {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.produto-preco-simple {
    font-size: 13px;
    color: #6b7280;
}

.produto-quantidade-simple {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.qty-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.qty-btn:hover {
    background: #e5e7eb;
    border-color: #0052CC;
    color: #0052CC;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 6px 4px;
    font-size: 14px;
    font-weight: 500;
}

.qty-input:focus {
    outline: none;
    border-color: #D33100;
    box-shadow: 0 0 0 2px rgba(211, 49, 0, 0.1);
}

.remove-produto {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: bold;
    margin-left: 8px;
}

.remove-produto:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.produto-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #e5e7eb;
}

.produto-info {
    flex: 1;
}

.produto-nome {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.produto-preco-unit {
    color: #0052CC;
    font-size: 0.95rem;
    margin: 0;
}

.produto-preco-unit strong {
    font-size: 1.1rem;
}

.btn-remover {
    background: #ef4444;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remover:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Footer simplificado */
.form-footer-simple {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-radius: 0 0 16px 16px;
    margin-top: 20px;
}

.total-display {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid #0052CC;
}

.total-text {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.total-valor {
    font-size: 20px;
    font-weight: bold;
    color: #0052CC;
}

.btn-enviar-simple {
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
}

.btn-enviar-simple:hover {
    background: linear-gradient(135deg, #20ba5a, #1ea653);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 49, 0, 0.4);
}

.btn-enviar-simple:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Modal de Contato WhatsApp */
.modal-contato {
    max-width: 500px;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

/* Responsividade para o formulário simplificado */
@media (max-width: 768px) {
    .modal-detalhado {
        max-width: 95%;
        width: calc(100% - 20px);
        margin: 10px;
        max-height: 90vh;
    }
    
    .form-detalhado {
        padding: 16px;
        gap: 16px;
    }
    
    .cliente-section,
    .produtos-section,
    .obs-section {
        padding: 16px;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .produto-selector-simple {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-add-simple {
        width: 100%;
        min-width: auto;
    }
    
    .form-footer-simple {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        margin-top: 16px;
    }
    
    .btn-enviar-simple {
        width: 100%;
        min-width: auto;
    }
    
    .total-display {
        width: 100%;
        justify-content: center;
    }
    
    .produto-item-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }
    
    .produto-quantidade-simple {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .modal-detalhado {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
    
    .modal-header {
        border-radius: 0;
        padding: 20px;
    }
    
    .form-detalhado {
        padding: 12px;
    }
    
    .cliente-section,
    .produtos-section,
    .obs-section {
        padding: 12px;
    }
    
    .form-footer-simple {
        margin-top: 12px;
        padding: 12px;
        border-radius: 0;
    }
    
    .total-display {
        padding: 8px 12px;
    }
    
    .btn-enviar-simple {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Responsividade do modal de contato */
@media (max-width: 768px) {
    .modal-contato {
        max-width: calc(100% - 20px);
        margin: 10px;
        border-radius: 15px;
    }
    
    .form-contato {
        padding: 20px;
    }
    
    .form-contato .form-group input,
    .form-contato .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
    }
}

.form-contato {
    padding: 30px;
}

.form-contato .form-section {
    margin-bottom: 25px;
}

.form-contato .form-group {
    margin-bottom: 20px;
}

.form-contato .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-contato .form-group label i {
    color: #25D366;
    font-size: 0.9rem;
}

.form-contato .form-group input,
.form-contato .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    box-sizing: border-box;
    font-family: inherit;
}

.form-contato .form-group input:focus,
.form-contato .form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

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

.btn-enviar-whatsapp {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-enviar-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-enviar-whatsapp:hover::before {
    left: 100%;
}

.btn-enviar-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a, #1ea653);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--cinza-escuro);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--vermelho);
}

.add-produto button {
    background: #4ade80;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.add-produto button:hover {
    background: var(--verde-escuro);
}

/* Produtos selecionados no modal */
.produto-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.produto-info {
    flex: 1;
}

.produto-nome {
    font-weight: bold;
    color: #333333;
    display: block;
    margin-bottom: 5px;
}

.produto-preco {
    color: #000000;
    font-weight: 600;
}

.produto-controls {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #fafbfc;
}

.quantidade-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qty-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.qty-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 4px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.btn-qty {
    background: #0052CC;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-qty:hover {
    background: #003D99;
    transform: scale(1.05);
}

.btn-minus {
    background: #dc2626;
}

.btn-minus:hover {
    background: #b91c1c;
}

.btn-plus {
    background: #059669;
}

.btn-plus:hover {
    background: #047857;
}

.quantidade-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    padding: 8px 4px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
}

.produto-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.subtotal-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subtotal-valor {
    font-size: 1.3rem;
    font-weight: 800;
    color: #059669;
    text-shadow: 0 1px 2px rgba(5, 150, 105, 0.2);
}

.btn-remove {
    background: #ef4444;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.btn-remove:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.total-section {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: #f0fdf4;
    border-radius: 10px;
}

.total-valor {
    font-size: 24px;
    font-weight: bold;
    color: #2d5016;
}

.btn-enviar-pedido {
    width: 100%;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-escuro));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-enviar-pedido:hover {
    transform: translateY(-2px);
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
        align-items: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-detalhado {
        max-width: 100%;
        width: calc(100% - 20px);
        margin: 10px;
        max-height: calc(100vh - 20px);
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .modal-header {
        padding: 15px;
        border-radius: 12px 12px 0 0;
        flex-shrink: 0;
    }
    
    .modal-header .modal-title {
        font-size: 1.2rem;
        gap: 8px;
    }
    
    .modal-header .close-modal {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .form-detalhado {
        padding: 20px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: none;
    }
    
    .form-footer {
        padding: 15px 20px;
        flex-shrink: 0;
        border-radius: 0 0 12px 12px;
        flex-direction: column;
        gap: 15px;
    }
    
    .total-section {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .btn-enviar-pedido {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .form-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .section-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-select {
        padding: 12px 14px;
        font-size: 16px; /* Evita zoom no iOS */
        border-radius: 6px;
    }
    
    .add-produto-container {
        padding: 12px;
        border-radius: 8px;
    }
    
    .produto-selector {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .btn-add-produto {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .produtos-lista {
        padding: 10px;
        min-height: 40px;
    }
    
    .produto-item {
        padding: 10px;
        margin-bottom: 8px;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .produto-info {
        flex: 1;
    }
    
    .produto-nome {
        font-size: 0.9rem;
    }
    
    .produto-preco {
        font-size: 0.9rem;
    }
    
    .btn-remover {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .form-footer {
        position: sticky;
        bottom: 0;
        margin: 15px -15px -15px;
        padding: 15px;
        border-radius: 0 0 12px 12px;
        background: #f8fafc;
        border-top: 1px solid #e5e7eb;
    }
    
    .total-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        margin-bottom: 12px;
    }
    
    .total-label {
        font-size: 0.95rem;
    }
    
    .total-valor {
        font-size: 1.2rem;
    }
    
    .btn-enviar-pedido {
        padding: 14px 18px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        padding: 0;
    }
    
    .modal-detalhado {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .modal-header {
        padding: 15px;
        border-radius: 0;
        flex-shrink: 0;
    }
    
    .modal-header .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-header .close-modal {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .form-detalhado {
        padding: 15px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-footer {
        padding: 15px;
        flex-shrink: 0;
        border-radius: 0;
        flex-direction: column;
        gap: 15px;
    }
    
    .total-section {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .btn-enviar-pedido {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }
    
    .form-section {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .section-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .form-group {
        margin-bottom: 10px;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-select {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .form-footer {
        margin: 12px -12px -12px;
        padding: 12px;
        border-radius: 0;
    }
    
    .total-section {
        padding: 8px 10px;
        margin-bottom: 10px;
    }
    
    .btn-enviar-pedido {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Otimizações de performance mobile */
@media (max-width: 768px) {
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .produto-img {
        will-change: transform;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Scroll suave para iOS */
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Modal responsivo */
    .modal-detalhado {
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header .modal-title {
        font-size: 1.3rem;
    }
    
    .form-detalhado {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-footer {
        margin: 0 -20px -20px;
        padding: 20px;
    }
    
    .produto-selector {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-add-produto {
        width: 100%;
        justify-content: center;
    }
    
    /* Seção de contato - Mobile */
    .contato {
        padding: 60px 0 120px 0; /* Adiciona padding bottom para evitar sobreposição do footer */
    }
    
    .contato-header {
        margin-bottom: 40px;
    }
    
    .contato-header .section-title {
        font-size: 2rem;
    }
    
    .contato-header .section-subtitle {
        font-size: 1rem;
    }
    
    .contato-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-card {
        padding: 24px 20px;
    }
    
    .contato-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .contato-card-icon i {
        font-size: 24px;
    }
    
    .contato-card-content h3 {
        font-size: 1.1rem;
    }
    
    .contato-value {
        font-size: 1rem;
    }
    
    .map-container {
        min-height: 350px;
    }
    
    .map-header {
        padding: 20px;
    }
    
    .map-header h3 {
        font-size: 1.25rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .btn-gps {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile pequeno - 480px */
@media (max-width: 480px) {
    .contato {
        padding: 40px 0;
    }
    
    .contato-header {
        margin-bottom: 30px;
    }
    
    .contato-header .section-title {
        font-size: 1.75rem;
    }
    
    .contato-container {
        gap: 30px;
    }
    
    .contato-card {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .contato-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .contato-card-icon i {
        font-size: 20px;
    }
    
    .contato-card-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .contato-value {
        font-size: 0.95rem;
    }
    
    .contato-label {
        font-size: 0.8rem;
    }
    
    .map-container {
        min-height: 300px;
        border-radius: 16px;
    }
    
    .map-header {
        padding: 16px;
    }
    
    .map-header h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .map-header p {
        font-size: 0.9rem;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .btn-gps {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    /* Versão CSS: 2.3 - Atualizada em 01/09/2025 */
    body {
        text-rendering: optimizeLegibility;
    }
    
    /* Prevenção de zoom em inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Animações otimizadas para mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Animação pulse para ícones */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(211, 49, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(211, 49, 0, 0);
    }
}

.whatsapp-card .contato-card-icon {
    animation: pulse-glow-orange-custom 2s ease-in-out infinite;
}

.location-card .contato-card-icon {
    animation: pulse-glow-orange-custom 2s ease-in-out infinite;
}

.schedule-card .contato-card-icon {
    animation: pulse-glow-orange-custom 2s ease-in-out infinite;
}

@keyframes pulse-glow-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-glow-blue {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 45, 114, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 45, 114, 0);
    }
}

@keyframes pulse-glow-orange {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
}

@keyframes pulse-glow-orange-custom {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(211, 49, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(211, 49, 0, 0);
    }
}

@keyframes pulse-glow-purple {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
}

/* PWA e offline support */
@media (display-mode: standalone) {
    .header {
        padding-top: env(safe-area-inset-top);
    }
}

/* Estilos para botões sociais do footer */
.footer-social-section {
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.instagram-btn {
    background: linear-gradient(135deg, #E4405F, #C13584);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #C13584, #E4405F);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.facebook-btn:hover {
    background: linear-gradient(135deg, #42A5F5, #1877F2);
}

.social-btn i {
    font-size: 16px;
}

/* Responsividade para botões sociais */
@media (max-width: 768px) {
    .footer-social-links {
        justify-content: center;
    }
    
    .social-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .social-btn i {
        font-size: 14px;
    }
}/* Melh
orias visuais para a logo do footer */
.footer-logo {
    position: relative;
}

.footer-logo img {
    transition: all 0.3s ease;
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* Efeito de brilho sutil para a logo do footer */
.footer-logo::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-logo:hover::before {
    opacity: 1;
}

/* Ajustes responsivos para a logo do footer com mais destaque */
@media (max-width: 480px) {
    .footer-logo {
        text-align: center;
        margin-bottom: 25px;
    }
}

@media (min-width: 1200px) {
    .footer-logo img {
        max-height: 95px;
    }
}/
* Sobrescrever estilos do menu mobile para ocultá-lo completamente */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: none !important;
        visibility: hidden !important;
    }
    
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        display: none !important;
        visibility: hidden !important;
    }
    
    .nav-menu {
        display: none !important;
        visibility: hidden !important;
    }
    
    .header-container {
        justify-content: center !important;
    }
    
    .logo {
        margin: 0 auto !important;
    }
}/* 
Ajustes do hero para header mais fino no desktop */
@media (min-width: 769px) {
    .hero {
        padding-top: 100px !important;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding-top: 95px !important;
    }
}/
* Ajuste do background do hero no mobile para centralizar na mão da mulher */
@media (max-width: 768px) {
    .hero {
        background-position: 65% center !important;
        background-attachment: scroll !important;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: 70% center !important;
        background-attachment: scroll !important;
        background-size: cover !important;
    }
}

/* Ajuste específico para telas muito pequenas */
@media (max-width: 360px) {
    .hero {
        background-position: 75% center !important;
    }
}/* A
justes específicos da hero-image para diferentes tamanhos mobile */
@media (max-width: 768px) {
    .hero-image {
        background-position: 65% center !important;
    }
}

@media (max-width: 480px) {
    .hero-image {
        background-position: 70% center !important;
        min-height: 350px !important;
    }
}

@media (max-width: 360px) {
    .hero-image {
        background-position: 75% center !important;
        min-height: 320px !important;
    }
}