/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #7A29A3;    /* Roxo - cor principal do Mounjaro */
    --color-secondary: #E94D98;  /* Rosa - destaque da embalagem 10mg */
    --color-accent: #00A651;     /* Verde - para CTAs */
    --color-dark: #333333;       /* Cinza escuro para textos */
    --color-light: #F5F5F5;      /* Cinza claro para fundos */
    --color-white: #FFFFFF;      /* Branco */
    --color-whatsapp: #25D366;   /* Verde do WhatsApp */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--color-dark);
    line-height: 1.6;
    background-color: var(--color-white);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

section {
    padding: 60px 0;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: #6a2490;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: var(--color-light);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 400px;
    object-fit: contain;
}

.hero h1 {
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-dosage {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--color-white);
}

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

.benefit-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

/* Product Info Section */
.product-info {
    background-color: var(--color-light);
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-height: 300px;
    object-fit: contain;
}

.product-details {
    flex: 1;
}

.product-features {
    list-style-position: inside;
    margin: 20px 0;
}

.product-features li {
    margin-bottom: 10px;
}

/* Security Section */
.security {
    background-color: var(--color-white);
}

.security-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.security-badges {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.security-badge img {
    width: 150px;
    height: auto;
    margin: 0 auto 15px;
}

.security-text {
    flex: 2;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.final-cta h2 {
    color: var(--color-white);
}

.stock-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-secondary);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    font-weight: 600;
}

.payment-info {
    margin-top: 30px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    font-size: 2rem;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    margin-bottom: 20px;
}

.medical-warning {
    font-weight: 600;
    color: #ff9800;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .security-content {
        flex-direction: column;
    }
    
    .security-badges {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
    }
    
    .product-image {
        margin-bottom: 20px;
    }
    
    .security-badges {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding-top: 150px;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .payment-icons {
        flex-wrap: wrap;
    }
}

