/* ===== GENERAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER & NAVIGATION ===== */
.header-2 {
    position: relative;
    z-index: 1000;
}

.dark-purple-bg {
    background: linear-gradient(135deg, #8B0000 0%, #C22D2F 50%, #8B0000 100%);
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    max-width: 180px;
    height: auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.logo-highlight {
    color: #FFD700;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.menu li a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.menu li a:hover {
    opacity: 0.8;
}

.div-order {
    background: #fff;
    color: #C22D2F;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

#menu-toggle {
    display: none;
}

.menu-button-container {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 3px;
    width: 25px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: '';
    margin-top: -8px;
}

.menu-button::after {
    content: '';
    margin-top: 8px;
}

/* ===== HERO SECTION ===== */
.light-purple-bg {
    background-color: #FFF5F5;
    position: relative;
    overflow: hidden;
}

.background-fundo {
    position: relative;
    z-index: 2;
}

.textos {
    position: relative;
    z-index: 10;
}

.text-wrapper-3 {
    color: #C22D2F;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.maintain-a-healthy {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
}

.span {
    color: #1a1a1a;
}

.text-wrapper-4 {
    color: #C22D2F;
}

.discover-the {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.boto {
    display: inline-block;
    background: linear-gradient(135deg, #C22D2F 0%, #8B0000 100%);
    padding: 15px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 45, 47, 0.3);
}

.boto:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 45, 47, 0.4);
}

.text-wrapper-2 {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.mockup-hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlap-2 {
    position: relative;
}

.ellipse-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 45, 47, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mockup-postra {
    position: relative;
    z-index: 2;
    max-width: 400px;
    height: auto;
}

.group-3 {
    pointer-events: none;
    display: none; /* Hide missing images */
}

/* Decorative elements using CSS */
.light-purple-bg::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(194, 45, 47, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.light-purple-bg::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    bottom: 0;
    right: 0;
    background: radial-gradient(ellipse at 100% 80%, rgba(194, 45, 47, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===== INGREDIENTS SECTION ===== */
.frmula {
    background: linear-gradient(135deg, #8B0000 0%, #C22D2F 100%);
    padding: 60px 0;
}

.overlap-3 {
    position: relative;
}

.headline-ingredientes {
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.bigger {
    font-size: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.probiotic-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
}

/* ===== NATURAL INGREDIENTS SECTION ===== */
.rectangle {
    background: linear-gradient(135deg, #C22D2F 0%, #8B0000 100%);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-height: 300px;
}

.rectangle-img {
    max-width: 200px;
    margin-bottom: 20px;
}

.text-wrapper-8 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.frame-8 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.frame-9 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    width: 20px;
    height: 20px;
}

.text-wrapper-9 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.bottle3-img {
    max-width: 350px;
    position: absolute;
    right: -50px;
    bottom: -50px;
}

.col-1-5 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

/* ===== FREE SHIPPING BAR ===== */
.top-nav2 {
    justify-content: center;
}

.logoship {
    margin-right: 20px;
}

.free-shipping {
    width: 80px;
    height: auto;
}

.every-order-comes {
    color: #fff;
    font-size: 20px;
}

.text-wrapper-12 {
    color: #fff;
}

.text-wrapper-13 {
    color: #FFD700;
    font-weight: 700;
}

.text-wrapper-14 {
    color: #aaa;
    font-size: 12px;
    margin: 0;
}

/* ===== PRICING CARDS ===== */
.background-fundo2 {
    background: linear-gradient(180deg, #FFF5F5 0%, #fff 100%);
    padding: 60px 0;
    position: relative;
}

.card-link {
    text-decoration: none;
}

.div-2,
.element-BOTTLES {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.div-2:hover,
.element-BOTTLES:hover {
    transform: translateY(-10px);
}

.element-BOTTLES {
    border: 3px solid #C22D2F;
}

.most-popular,
.free-shipping-3,
.free-shipping-5 {
    background: #C22D2F;
    padding: 10px;
    text-align: center;
}

.free-shipping-2,
.free-shipping-4 {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.free-delivery,
.free-delivery-2 {
    width: 30px;
    margin-right: 10px;
}

.frame-13,
.frame-16 {
    padding: 30px;
    text-align: center;
}

.intro {
    margin-bottom: 20px;
}

.text-wrapper-15 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.text-wrapper-16 {
    font-size: 14px;
    color: #666;
}

.frascos {
    max-width: 200px;
    margin: 20px 0;
}

.frame-14 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.element-5,
.element-7 {
    font-size: 48px;
    font-weight: 800;
    color: #C22D2F;
}

.month,
.month-2 {
    font-size: 16px;
    color: #666;
}

.group-10 {
    margin-bottom: 20px;
}

.overlap-group-5,
.overlap-group-6,
.overlap-group-7 {
    background: linear-gradient(135deg, #C22D2F 0%, #8B0000 100%);
    padding: 15px 40px;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlap-group-5:hover,
.overlap-group-6:hover,
.overlap-group-7:hover {
    transform: scale(1.05);
}

.text-wrapper-17 {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.TOTAL,
.TOTAL-3 {
    margin-bottom: 20px;
}

.text-wrapper-18,
.text-wrapper-21 {
    font-size: 14px;
    color: #666;
}

.text-wrapper-19 {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.text-wrapper-20,
.text-wrapper-22 {
    font-size: 18px;
    font-weight: 700;
    color: #C22D2F;
}

.frame-15 {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.credit-cards {
    max-width: 200px;
    margin-bottom: 10px;
}

.TOTAL-2 {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* ===== GUARANTEE SECTION ===== */
.blue-circles {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d1f33 100%);
    padding: 80px 0;
    position: relative;
}

.white-bg-rounded {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
}

.guarantee-img {
    max-width: 200px;
}

.headline-garantia {
    font-size: 32px;
    color: #fff;
}

.white-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
}

.black-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

/* ===== FAQ SECTION ===== */
.faq-section::before,
.faq-section::after {
    display: none;
}

.faq-decorative-bg {
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    right: 0;
    background: radial-gradient(ellipse at 100% 50%, rgba(194, 45, 47, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.FAQ-wrapper {
    margin-bottom: 30px;
}

.FAQ-2 {
    font-size: 72px;
    font-weight: 800;
    color: #C22D2F;
    opacity: 0.3;
}

.frame-17 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.overlap-group-8 {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.overlap-group-8:hover {
    background: #f9f9f9;
}

.chevron-down {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .chevron-down {
    transform: rotate(180deg);
}

.text-wrapper-23 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-content p {
    padding: 0 0 20px 35px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== SCIENTIFIC REFERENCES ===== */
.group-wrapper {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.scientific {
    font-size: 28px;
    margin-bottom: 30px;
}

.text-wrapper-26 {
    color: #C22D2F;
    font-weight: 700;
}

.text-wrapper-27 {
    color: #333;
    font-weight: 400;
}

.group-15 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.frame-19,
.frame-20 {
    gap: 30px;
}

.frontiers {
    max-width: 120px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.frontiers:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.text-wrapper-28 {
    font-size: 12px;
    color: #888;
}

.hern-ndez-cerda-j {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    max-height: 400px;
    overflow-y: auto;
}

/* ===== PRE-FOOTER SECTION ===== */
.prefooter {
    padding: 60px 0;
}

.mockup-shadow2 {
    position: absolute;
    width: 300px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.background-right-leafb {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to left, rgba(194, 45, 47, 0.05), transparent);
}

.image-container2,
.image-container3 {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.image-container2 {
    left: 0;
    top: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 0% 0%, rgba(194, 45, 47, 0.1) 0%, transparent 50%);
}

.image-container3 {
    right: 0;
    bottom: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 100% 100%, rgba(194, 45, 47, 0.1) 0%, transparent 50%);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1a3a5c 0%, #0d1f33 100%);
}

.footer-wrapper {
    position: relative;
}

.footer-top-bg {
    padding: 40px 0 20px;
}

.footer-main-section p {
    line-height: 1.8;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.footer-menu-links a {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-menu-links a:hover {
    opacity: 1;
}

.footer-bottom-bg {
    background: rgba(0, 0, 0, 0.2);
}

.copyright {
    font-size: 14px;
}

/* ===== UTILITY CLASSES ===== */
.only-desktop {
    display: block;
}

.only-mobile {
    display: none;
}

.only-desktop2 {
    display: block;
}

.only-mobile2 {
    display: none;
}

.no-pading-mobile {
    padding-left: 15px;
    padding-right: 15px;
}

.text-white {
    color: #fff !important;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .menu-button-container {
        display: flex;
        position: relative;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #8B0000;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        z-index: 1000;
    }

    #menu-toggle:checked ~ .menu {
        display: flex;
    }

    .only-desktop {
        display: none !important;
    }

    .only-mobile {
        display: block !important;
    }

    .only-desktop2 {
        display: none !important;
    }

    .only-mobile2 {
        display: block !important;
    }

    .maintain-a-healthy {
        font-size: 28px;
    }

    .mockup-postra {
        max-width: 280px;
    }

    .headline-ingredientes {
        font-size: 24px;
    }

    .FAQ-2 {
        font-size: 48px;
    }

    .rectangle {
        border-radius: 20px;
        margin: 20px;
    }

    .bottle3-img {
        position: relative;
        right: 0;
        bottom: 0;
        max-width: 100%;
        margin-top: 20px;
    }

    .col-1-5 {
        display: none;
    }

    .every-order-comes {
        font-size: 16px;
    }

    .free-shipping {
        width: 60px;
    }

    .headline-garantia {
        font-size: 24px;
        text-align: center;
    }

    .padding-natural-ing {
        padding-top: 50px;
    }

    .margin-bottom-mobile {
        margin-bottom: 30px;
    }

    .header-top {
        padding-top: 20px;
    }
}

@media (max-width: 576px) {
    .maintain-a-healthy {
        font-size: 24px;
    }

    .discover-the {
        font-size: 14px;
    }

    .boto {
        padding: 12px 30px;
    }

    .frascos {
        max-width: 150px;
    }

    .element-5,
    .element-7 {
        font-size: 36px;
    }

    .probiotic-img {
        width: 80px;
        height: 80px;
    }

    .footer-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .scientific {
        font-size: 22px;
    }

    .hern-ndez-cerda-j {
        font-size: 13px;
        max-height: 300px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.textos {
    animation: fadeInUp 0.8s ease-out;
}

.mockup-hero {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION ===== */
::selection {
    background: #C22D2F;
    color: #fff;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #C22D2F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B0000;
}

