:root {
    --primary-color: #005AAB;
    --primary-light: #0081f2;
    --secondary-color: #00AEEF;
    --bg-light: #f8fbff;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-soft);
}

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

.logo img {
    height: 100px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 90, 171, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    width: 100%;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.02);
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    min-height: 700px;
    background: url('assets/hero_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.2) 100%);
}

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

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 90, 171, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* --- Benefits --- */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.text-center { text-align: center; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.benefit-card {
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- Product --- */
.bg-light { background-color: #f0f7ff; }

.product-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.product-image {
    flex: 1;
    position: relative;
}

.product-image img {
    border-radius: 30px;
}

.award-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    text-align: center;
}

.award-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.product-text {
    flex: 1;
}

.product-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
}

.experience-note {
    padding: 1.5rem;
    font-style: italic;
    font-size: 0.9rem;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.method h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 90, 171, 0.1);
}

.btn-block { width: 100%; }

/* --- Footer --- */
.footer {
    background: #002e57;
    color: rgba(255, 255, 255, 0.82);
    padding: 4rem 0;
    text-align: center;
}

.footer-links {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.distributor {
    font-size: 0.8rem;
    margin-top: 2rem;
    opacity: 0.6;
}

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(30px); }
.fade-in-left { opacity: 0; transform: translateX(-30px); }
.fade-in-right { opacity: 0; transform: translateX(30px); }

.appear {
    opacity: 1;
    transform: none;
    transition: all 1s ease;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    .hero-text h1 { font-size: 3rem; }
    .product-flex, .contact-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .product-image, .contact-form-wrapper { width: 100%; }
}

@media (max-width: 600px) {
    .hero-text h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .nav-links { display: none; }
}

/* --- Policy Pages Styling --- */
.policy-page {
    background: var(--white);
}

.policy-content {
    padding-top: 10rem;
    padding-bottom: 6rem;
    max-width: 800px;
}

.policy-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.policy-content section {
    padding: 2rem 0;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f7ff;
    padding-bottom: 0.5rem;
}

.policy-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
}

.policy-content p {
    margin-bottom: 1rem;
    color: #444;
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}
