/* ====================================
   LP EMPRESAS - D'TUDO ATACADO B2B
   ==================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    --secondary-color: #00cc66;
    --accent-color: #ff6b00;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --text-light: #888888;
    --bg-light: #f5f8ff;
    --bg-white: #ffffff;
    --bg-gradient-start: #e6f0ff;
    --bg-gradient-end: #fff5e6;
    --border-color: #e0e0e0;
    --success-color: #00cc66;
    --whatsapp-color: #25d366;
    --yellow-highlight: #ffd700;
    --orange-highlight: #ff8c00;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 36px rgba(0, 102, 255, 0.25);
    --shadow-colored: 0 8px 24px rgba(0, 102, 255, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Fixo */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-fixed.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.phone-btn:hover {
    color: var(--primary-color);
}

.phone-btn i {
    font-size: 20px;
}

/* Botões */
.btn-primary,
.btn-primary-large,
.btn-whatsapp,
.btn-whatsapp-large,
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary,
.btn-primary-large {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-whatsapp,
.btn-whatsapp-large {
    background: var(--whatsapp-color);
    color: white;
}

.btn-whatsapp:hover,
.btn-whatsapp-large:hover {
    background: #1fb854;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    justify-content: center;
    font-size: 18px;
    padding: 16px 24px;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 120px 0 120px;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(135deg, rgba(230, 240, 255, 0.75) 0%, rgba(255, 245, 230, 0.75) 100%),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-text {
    padding-top: 20px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--orange-highlight));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero h1 strong {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.benefit-item i {
    color: var(--success-color);
    font-size: 24px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Form Card */
.form-card {
    background: white;
    padding: 40px;
    padding-top: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-colored);
    position: sticky;
    top: 100px;
    border: 3px solid var(--primary-color);
    position: relative;
    margin-bottom: 40px;
}

.form-card::before {
    content: '🎁 OFERTA EXCLUSIVA';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--yellow-highlight), var(--accent-color));
    color: #000;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.form-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 15px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 10px;
}

.form-privacy i {
    color: var(--success-color);
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: white;
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.proof-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.3);
}

.proof-text {
    display: flex;
    flex-direction: column;
}

.proof-text strong {
    font-size: 28px;
    color: var(--primary-color);
    line-height: 1;
}

.proof-text span {
    font-size: 14px;
    color: var(--text-gray);
}

/* Seções */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

/* Produtos para Empresas */
.produtos-empresas {
    background: var(--bg-light);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.produto-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.produto-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.produto-card.featured {
    border-color: var(--yellow-highlight);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3), 0 8px 24px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #fff 0%, #fffef0 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--yellow-highlight), var(--accent-color));
    color: #000;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.produto-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--orange-highlight));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
    transition: all 0.3s ease;
}

.produto-card:hover .produto-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.45);
}

.produto-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.produto-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.produto-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
    font-size: 15px;
}

.produto-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.produto-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.produto-cta:hover {
    gap: 12px;
}

/* Benefícios */
.beneficios {
    background: white;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.beneficio-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.beneficio-card:hover {
    background: var(--bg-light);
}

.beneficio-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), #00b359);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 40px;
    box-shadow: 0 8px 20px rgba(0, 204, 102, 0.35);
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 28px rgba(0, 204, 102, 0.5);
}

.beneficio-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.beneficio-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Como Funciona */
.como-funciona {
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 40px;
    font-size: 30px;
    color: var(--primary-color);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
    border: 4px solid white;
    outline: 3px solid var(--primary-color);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-gray);
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 50%, #0066ff 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    font-size: 32px;
    opacity: 0.9;
}

.contact-item div {
    text-align: left;
}

.contact-item span {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

.contact-item strong {
    display: block;
    font-size: 20px;
}

/* FAQ */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: var(--text-light);
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: scale(1.1);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    font-size: 20px;
    color: var(--primary-light);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-card {
        position: static;
    }

    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step:nth-child(2):after {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-cta {
        flex-direction: column;
        gap: 10px;
    }

    .phone-btn span {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta a {
        width: 100%;
        justify-content: center;
    }

    .form-card {
        padding: 30px 20px;
    }

    .produtos-grid,
    .beneficios-grid,
    .proof-items,
    .steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .step:after {
        display: none;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .btn-primary-large,
    .btn-whatsapp-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}
