/* ======================================================= */
/* Estilos Base - MM Artes & Brindes                           */
/* Desenvolvimento e Engenharia: Beetech Solutions             */
/* ======================================================= */

:root {
    --bg: #060608;
    --surface: #110e10;
    --surface-card: #181417;
    --primary: #e11d48; /* Vermelho vibrante idêntico ao da logo */
    --primary-glow: rgba(225, 29, 72, 0.15);
    --accent: #f8fafc;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #e11d48 0%, #9f1239 100%); /* Degradê premium baseado na logo */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================================================= */
/* Header Glassmorphic - Beetech Solutions                 */
/* ======================================================= */
header {
    padding: 18px 0;
    background: rgba(6, 6, 8, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    max-height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-text span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-whatsapp-header {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-header:hover {
    background: var(--text-main);
    color: var(--bg);
    transform: translateY(-2px);
}

/* ======================================================= */
/* Hero Section B2B - Beetech Solutions                    */
/* ======================================================= */
.hero {
    padding: 220px 0 120px 0;
    position: relative;
    background: radial-gradient(circle at 50% -20%, rgba(225, 29, 72, 0.15), transparent 50%),
                radial-gradient(circle at 90% 50%, rgba(159, 18, 57, 0.06), transparent 40%);
}

.badge-tag {
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.2);
    color: #fb7185;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

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

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.slogan-highlight {
    font-style: italic;
    color: #fca5a5;
    font-weight: 500;
    display: block;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.cta-main {
    background: var(--gradient);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.3);
}

.cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.5);
}

/* ======================================================= */
/* Seções de Conteúdo - Beetech Solutions                  */
/* ======================================================= */
.about-section {
    padding: 100px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.about-title span {
    color: var(--primary);
}

.about-p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.products-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-icon-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 24px auto;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-box {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.features-section {
    padding: 100px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.features-text h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 14px;
}

.cta-footer-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--surface-card), #160f13);
    border: 1px solid var(--border);
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.cta-box h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 40px auto;
    font-size: 16px;
}

/* ======================================================= */
/* Rodapé & Componentes - Beetech Solutions                */
/* ======================================================= */
footer {
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
    background-color: #060506;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .footer-col p {
        justify-content: center;
    }
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 32px;
    right: 32px;
    background-color: #25d366;
    color: white;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 768px) {
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 16px; }
    .section-header h2 { font-size: 28px; }
    .features-text h2 { font-size: 30px; }
    .cta-box { padding: 50px 20px; }
    .cta-box h2 { font-size: 30px; }
}
