:root {
    --primary-red: #e51e25;
    --dark-red: #b31217;
    --dark-blue: #0f2c59;
    --light-bg: #fdfefe;
    --accent-yellow: #fffdeb;
    --detail-yellow: #ffcc00;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-blue);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.flex-center { justify-content: center; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 30, 37, 0.3);
}

.btn-primary:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    font-size: 16px;
}

.btn-whatsapp:hover {
    background-color: #1ebd58;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-card-order {
    display: block;
    background-color: var(--dark-blue);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-card-order:hover {
    background-color: var(--primary-red);
}

section {
    padding: 80px 0;
}

/* --- HEADER & NAV --- */
header {
    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo img {
    display: block;
    height: 65px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-red);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-red);
    cursor: pointer;
}

/* --- HERO --- */
#home {
    padding-top: 150px;
    background: linear-gradient(135deg, var(--bg-white) 70%, var(--accent-yellow) 100%);
}

#home .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.badge-parceiro {
    background-color: #e0f2fe;
    color: #0369a1;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 360px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.hero-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background-color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-left: 5px solid var(--detail-yellow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge i {
    color: var(--primary-red);
    font-size: 26px;
}

.hero-badge span {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 14px;
}

/* --- DIFERENCIAIS (CARDS COM IMAGEM) --- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background-color: var(--bg-white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background-color: #f8fafc;
    margin-bottom: 20px;
}

.mvv-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mvv-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    padding: 0 20px;
}

.mvv-card p {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 20px;
}

/* --- PRODUTOS --- */
#produtos {
    background-color: #f8fafc;
}

.produtos-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* .produto-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border-top: 5px solid var(--primary-red);
} */
.produto-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border-top: 5px solid var(--primary-red);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* .produto-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
} */
.produto-img {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.produto-img img {
    max-width: 180px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.produto-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.produto-info p {
    color: var(--text-light);
    font-size: 14px;

}

/* --- CONTATO --- */
.contato-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.membro-card {
    background-color: var(--bg-white);
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.focus-card {
    border-color: var(--primary-red);
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--accent-yellow) 100%);
}

.membro-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fee2e2;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px auto;
}

.membro-card h4 {
    font-size: 22px;
    color: var(--dark-blue);
}

.membro-card span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    margin: 5px 0 25px 0;
}

.info-canais {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.canal-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.canal-icon {
    width: 55px;
    height: 55px;
    background-color: #f1f5f9;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 22px;
}

.canal-text h4 { font-size: 16px; }
.canal-text p, .canal-text a {
    color: var(--text-light);
    font-size: 15px;
    text-decoration: none;
}

/* --- FOOTER --- */
footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 35px 0;
    text-align: center;
    font-size: 14px;
}

/* --- MOBILE --- */
@media (max-width: 992px) {
    .mvv-grid { grid-template-columns: 1fr; }
    .contato-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    #home .container { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 34px; }
    .hero-image { order: -1; }
    .menu-toggle { display: block; }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        gap: 15px;
    }
    nav ul.active { display: flex; text-align: center; }
}
