/* Base Styles and Variables */
:root {
    --primary-color: #2a9d8f;
    --secondary-color: #e76f51;
    --accent-color: #f4a261;
    --dark-color: #264653;
    --light-color: #e9f5f3;
    --text-color: #333333;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --gray-dark: #495057;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--dark-color);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

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

.mt-4 {
    margin-top: 2rem;
}

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

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.cta-button.primary:hover {
    background-color: #d65f41;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.cta-button.secondary:hover {
    background-color: #238d7f;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-button.small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #218380 100%);
    color: var(--white);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.hero .subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}


.shine-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}

.price-tag {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.new-price {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.discount-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--accent-color);
}

.scarcity {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: var(--border-radius);
}

.scarcity i {
    color: var(--warning);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.scarcity p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Problem Section */
.problem {
    background-color: var(--gray-dark);
    color: var(--white);
}

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

.problem-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.problem-item {
    display: flex;
    align-items: flex-start;
}

.problem-item i {
    color: var(--danger);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.emotional-consequence {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    background-color: rgba(220, 53, 69, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto;
}

/* Solution Section */
.solution {
    background-color: var(--light-color);
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.product-showcase {
    text-align: center;
    margin-bottom: 3rem;
}

.ingredients-image {
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    margin-bottom: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: calc(33.333% - 1.33rem);
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.before-after {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content h3 {
    margin-bottom: 0.5rem;
}

.result {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: var(--gray-dark);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.prev-btn, .next-btn {
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Detailed Benefits Section */
.detailed-benefits {
    background-color: var(--gray-light);
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-card .icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #218380 100%);
    color: var(--white);
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.offer-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
}

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

.price-container {
    text-align: center;
    margin-bottom: 2rem;
}

.price-tag.large {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.price-tag.large .old-price {
    font-size: 1.5rem;
}

.price-tag.large .new-price {
    font-size: 2.5rem;
}

.payment-options {
    font-size: 1.1rem;
}

.installments {
    margin-bottom: 0.5rem;
}

.discount {
    color: var(--accent-color);
    font-weight: 600;
}

.offer-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-benefits .benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.offer-benefits .benefit-item i {
    color: var(--accent-color);
}

.countdown-container {
    text-align: center;
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-block {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: var(--border-radius);
    min-width: 80px;
}

.time {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.stock-counter {
    text-align: center;
    margin-bottom: 2rem;
}

.stock-counter p {
    margin-bottom: 0.5rem;
}

#stock-count {
    font-weight: 700;
    color: var(--warning);
}

.progress-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--warning);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.product-image-offer {
    text-align: center;
    margin: 2rem 0;
}

.offer-image {
    max-width: 300px;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--white);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.guarantee-seal {
    flex: 0 0 200px;
}

.seal-image {
    max-width: 100%;
}

.guarantee-text {
    flex: 1;
    max-width: 600px;
}

.guarantee-note {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Before-After Gallery */
.before-after-gallery {
    background-color: var(--gray-light);
}

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

.gallery-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

/* Emotional Appeal Section */
.emotional-appeal {
    background: linear-gradient(rgba(38, 70, 83, 0.9), rgba(38, 70, 83, 0.9)), url('images/emotional-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.emotional-appeal h2 {
    color: var(--white);
}

.appeal-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.appeal-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--gray-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.toggle-icon {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-item.active .toggle-icon .fa-plus::before {
    content: "\f068";
}

/* Checkout Section */
.checkout {
    background-color: var(--gray-light);
    display: none;
}

.checkout.active {
    display: block;
}

.checkout-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.product-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 2rem;
}

.checkout-product-image {
    max-width: 100px;
}

.product-details h3 {
    margin-bottom: 0.5rem;
}

.checkout-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.checkout-discount {
    color: var(--success);
    font-size: 0.9rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    margin-bottom: 1rem;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray);
}

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

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group.small {
    flex: 0 0 100px;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.payment-methods {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-method input[type="radio"] {
    width: auto;
}

.checkout-summary {
    background-color: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.discount {
    color: var(--success);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray);
}

.checkout-button {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
}

.checkout-button:hover {
    background-color: #d65f41;
}

.security-badges {
    text-align: center;
    margin-top: 2rem;
}

.security-image {
    max-width: 300px;
    margin-bottom: 0.5rem;
}

.security-note {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.exit-popup.active {
    display: flex;
}

.popup-content {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-dark);
}

.popup-offer {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.popup-discount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Floating Elements */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: none;
}

.floating-cta.active {
    display: block;
}

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 900;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25d366;
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.whatsapp-button a:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
}

.footer-logo .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.link-group h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.link-group ul li {
    margin-bottom: 0.75rem;
}

.link-group ul li a {
    color: var(--gray);
}

.link-group ul li a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.payment-methods {
    display: flex;
    align-items: center;
}

.payment-image {
    max-width: 200px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .testimonial-card {
        width: calc(50% - 1rem);
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    nav ul {
        display: none;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.small {
        flex: 1;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-block {
        min-width: 70px;
    }
    
    .popup-content {
        padding: 2rem 1rem;
        width: 90%;
    }
    
    .whatsapp-button span {
        display: none;
    }
    
    .whatsapp-button a {
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }
}

.product-image, .offer-image, .before-after img, .seal-image { 
  display:block; height:auto; 
align-items:center;
}
.before-after img { object-fit: cover; }