/* 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-retatrutide: #FFD700; /* Dourado - para Retatrutide */
    --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: 12px;
    --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);
    overflow-x: hidden;
}

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

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

h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

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

section {
    padding: 40px 0;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 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;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-height: 48px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, #1da851 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #6a2490 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 32px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    min-height: 56px;
}

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

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

.logo img {
    height: clamp(40px, 6vw, 50px);
    width: auto;
}

.header-cta .btn {
    padding: 10px 16px;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, var(--color-light) 0%, #e8f4f8 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    text-align: center;
    max-width: 100%;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 300px;
}

.hero-image img {
    max-height: 250px;
    object-fit: contain;
    border-radius: var(--border-radius);
}

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

.hero h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-secondary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 600;
    white-space: nowrap;
}

.hero-dosage {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Products Comparison Section */
.products-comparison {
    background-color: var(--color-white);
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

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

.mounjaro-card {
    border-color: var(--color-primary);
}

.retatrutide-card {
    border-color: var(--color-retatrutide);
    background: linear-gradient(135deg, #fff9e6 0%, var(--color-white) 100%);
}

.featured {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-retatrutide) 0%, #ffb347 100%);
    color: var(--color-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: var(--shadow-md);
}

.product-header {
    text-align: center;
    margin-bottom: 20px;
}

.product-header h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 8px;
}

.product-subtitle {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.product-image {
    text-align: center;
    margin-bottom: 25px;
}

.product-image img {
    max-height: 200px;
    object-fit: contain;
    border-radius: var(--border-radius);
    margin: 0 auto;
}

.product-benefits {
    margin-bottom: 25px;
}

.product-benefits h4 {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    margin-bottom: 15px;
    color: var(--color-dark);
}

.product-benefits ul {
    list-style: none;
    padding: 0;
}

.product-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

.product-benefits .fas {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.retatrutide-card .product-benefits .fas {
    color: var(--color-retatrutide);
}

.product-dosages {
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    text-align: center;
}

.product-dosages p {
    margin: 0;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

.product-card .btn {
    width: 100%;
    justify-content: center;
}

/* Benefits Section */
.benefits {
    background-color: var(--color-light);
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.benefit-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

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

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.benefit-card p {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.testimonials-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    justify-content: center;
}

.stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: #495057;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
}

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

.author-info h4 {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-location {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #6c757d;
    font-weight: 500;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #6c757d;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.authority-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: #495057;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.security-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: column;
}

.security-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.security-badge img {
    width: clamp(100px, 20vw, 150px);
    height: auto;
    margin: 0 auto 15px;
}

.security-badge p {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    font-weight: 600;
}

.security-text {
    text-align: center;
    max-width: 600px;
}

.security-text h3 {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    margin-bottom: 20px;
}

.security-text p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 15px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #6a2490 100%);
    color: var(--color-white);
    text-align: center;
    padding: 60px 0;
}

.final-cta h2 {
    color: var(--color-white);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.final-cta p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-bottom: 25px;
}

.stock-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-secondary);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

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

.payment-info p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: clamp(1.5rem, 4vw, 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;
    gap: 20px;
}

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

.footer-info p {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    margin-bottom: 8px;
}

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

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

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

.copyright {
    font-size: clamp(0.75rem, 1.6vw, 0.85rem);
    opacity: 0.7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, #1da851 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

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

/* Responsividade para tablets */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero .container {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-badges {
        justify-content: flex-start;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .security-content {
        flex-direction: row;
    }
    
    .security-text {
        text-align: left;
    }
}

/* Responsividade para desktop */
@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .btn-large {
        width: 100%;
        padding: 16px 20px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}

