/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.highlight {
    color: #66a182;
    position: relative;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #a8d5ba 0%, #66a182 100%);
    color: white;
    padding: 40px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

/* Hero Brand Section */
.hero-brand {
    width: 100%;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.brand-highlight {
    color: #ffd700;
}

.brand-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

/* Hero Visual */
.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.injection-pens {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 600px;
    width: 100%;
}

/* Hero Text Section */
.hero-text {
    width: 100%;
}

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit i {
    font-size: 1.5rem;
    color: #f0e68c;
    margin-top: 0.25rem;
}

.benefit h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.cta-button i {
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Hero Visual - Injection Pens */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.injection-pens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 400px;
}

.pen {
    position: relative;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.3s;
}

.pen:hover {
    transform: translateY(-5px);
}

.pen img {
    width: 50px;
    height: 70px;
    filter: brightness(0) invert(1);
}

.pen .percentage {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffd700;
    color: #333;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Trust Badges */
.trust-badges {
    background: #fff;
    padding: 2rem 0;
}

.badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #a8d5ba !important;
    color: white !important;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(168, 213, 186, 0.25);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #a8d5ba;
    z-index: -1;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 213, 186, 0.35);
    background: #66a182 !important;
}

.badge i {
    font-size: 1.5rem;
    color: white !important;
    opacity: 0.9;
    min-width: 24px;
}

.badge h4 {
    margin: 0;
    font-size: 0.95rem;
    color: white !important;
    font-weight: 600;
    line-height: 1.2;
}

.badge p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 400;
    line-height: 1.3;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(135deg, #4a7c59 0%, #66a182 100%);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(74, 124, 89, 0.3);
    transition: all 0.3s;
    position: relative;
    border: 2px solid rgba(255,255,255,0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(74, 124, 89, 0.4);
    border-color: rgba(255,255,255,0.4);
}

.product-card.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #3d6b4a 0%, #4a7c59 100%);
    box-shadow: 0 20px 40px rgba(74, 124, 89, 0.5);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-image {
    position: relative;
    margin-bottom: 1.5rem;
}

.product-image img {
    width: 80px;
    height: 100px;
}

.product-image .percentage {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #a8d5ba;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.product-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 700;
}

.amount {
    font-size: 3rem;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.price-info {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.features i {
    color: #ffd700;
    font-size: 0.8rem;
}

.product-cta {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #a8d5ba 0%, #66a182 100%);
    color: white;
    padding: 5rem 0;
}

.testimonials h2 {
    color: white;
}

.testimonials .subtitle {
    color: rgba(255,255,255,0.9);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.before-after {
    margin-bottom: 1rem;
}

.image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.placeholder-image {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}

.placeholder-image i {
    font-size: 2rem;
    opacity: 0.5;
}

.placeholder-image span {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.7;
}

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

.badge {
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info .location {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

.social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-image {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-image i {
    font-size: 2rem;
}

.social-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.social-stats span {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Educational Section */
.educational {
    padding: 5rem 0;
    background: #f8f9fa;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
}

.placeholder-video {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a8d5ba, #66a182);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-video i {
    font-size: 2rem;
    color: white;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
}

.video-card h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1rem;
    margin: 0;
}

.video-card p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

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

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #a8d5ba 0%, #66a182 100%);
    color: white;
    padding: 5rem 0;
}

.faq h2 {
    color: white;
}

.faq .subtitle {
    color: rgba(255,255,255,0.9);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    text-align: left;
}

.faq-question:hover {
    background: rgba(255,255,255,0.15);
}

.faq-question.active {
    background: rgba(255,255,255,0.2);
    border-radius: 15px 15px 0 0;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-top: none;
    padding: 0 1.5rem;
    border-radius: 0 0 15px 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #a8d5ba;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    color: #ccc;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-3 {
    margin-top: 3rem;
}
