/* style.css */
:root {
    --primary-color: #25D366;
    --primary-dark: #128C7E;
    --secondary-color: #075E54;
    --accent-color: #ff9800;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --highlight-badge: #e11d48;
    
    /* Cores dos Ícones de Locais */
    --icon-supermercado: #38bdf8;
    --icon-acougue: #f87171;
    --icon-sacolao: #4ade80;
    --icon-adega: #c084fc;
    --icon-padaria: #fbbf24;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 40px;
}

header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
}

header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

header p.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #dcf8c6;
    margin-bottom: 20px;
}

.badge-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-icon {
    color: #4ade80;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Proposta de Valor */
.value-prop {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    text-align: center;
}

.value-prop p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.locations {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.location-chip {
    background: #334155;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
}

.icon-supermercado { color: var(--icon-supermercado); }
.icon-acougue { color: var(--icon-acougue); }
.icon-sacolao { color: var(--icon-sacolao); }
.icon-adega { color: var(--icon-adega); }
.icon-padaria { color: var(--icon-padaria); }

/* Galeria de Imagens */
.gallery-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallel-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sub-image-container {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.sub-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Dinâmica de Atendimento */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.step-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.step-number {
    background-color: var(--primary-color);
    color: #000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Tabela de Ofertas */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.2);
}

.ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--primary-color);
}

/* Regra de Ouro */
.rules-box {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1) 0%, rgba(30, 41, 59, 1) 100%);
    border: 1px solid var(--highlight-badge);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
}

.rules-box h3 {
    color: var(--highlight-badge);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rules-box ul {
    list-style-type: none;
}

.rules-box li {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.rules-box li::before {
    content: '•';
    color: var(--highlight-badge);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Formulário */
.form-container {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary-color);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-whatsapp {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
}

/* Botão Flutuante Atendente */
.floating-attendant-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #0284c7;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.floating-attendant-btn:hover {
    transform: scale(1.08);
    background-color: #0369a1;
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    background-color: #1e293b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    border: 1px solid var(--border-color);
}

.floating-attendant-btn:hover .btn-tooltip {
    opacity: 1;
}

/* Rodapé */
footer {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--primary-color);
}