* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
}

:root {
    --main-lighter: rgba(221, 145, 252, 0.75);
    --main-light: #ff7cfb;
    --main-dark: #B7A6F6;
    --main: #631f84;
}

html {
    scroll-behavior: smooth;
}

header {
    padding: 30px 0;
    background: #8e18bd;
}

#logo-header {
    display: block;
    margin: auto;

    width: 20vw;
    min-width: 200px;
    max-width: 300px;
}

main {
    background-color: white;
    display: grid;
    grid-template-columns: 1fr minmax(0, 1300px) 1fr;
    grid-template-rows: auto auto auto;
    margin: auto;
}

section {
    grid-column: 1 / -1;
    background-color: white;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-up.is-visible,
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

section#presentation {
    padding: 60px 16px;
    background: linear-gradient(135deg, #9123bb, var(--main-light));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

section#presentation > article {
    max-width: 600px;
    flex: 1 1 420px;
}

section#presentation > article#text-presentation {
    padding: 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

section#presentation::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    animation: move-bg 40s linear infinite;
}

@keyframes move-bg {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}

article#text-presentation {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    z-index: 2;
}

article#text-presentation h1 {
    font-size: 3.5em;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #ffe4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    animation: fadeUp 1s ease forwards;
}

article#text-presentation p {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.bullets-presentation {
    list-style: none;
    margin: 0 0 22px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.bullets-presentation li {
    position: relative;
    padding-left: 32px;
    color: #fff;
    font-size: 1.05em;
    line-height: 1.4;
    opacity: 0.95;
}

.bullets-presentation li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(2px);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.badges-presentation {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    margin-top: 14px;
}

.badges-presentation span {
    background: rgba(255,255,255,0.14);
    color: #fff;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.9em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.trust-seal {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    opacity: 0.95;
}

.trust-seal svg {
    height: 28px;
    width: auto;
}
article#text-presentation img {
    width: 300px;
    margin: auto;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

a#button-presentation {
    font-size: 1.5em;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #9123bb, var(--main-light));
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(195, 126, 219, 0.8);
    transition: transform 0.3s, box-shadow 0.3s;
}

a#button-presentation:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 200, 255, 1);
}

#product-presentation {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    z-index: 2;
    display: flex;
    justify-content: center;
}

#product-highlighted {
    width: 100%;
    max-width: 500px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0px 0px 20px rgba(195,126,219,0.7));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.gradient-divider {
    height: 5px;
    background: linear-gradient(to right, #631f84, #c37edb);
    width: 100%;
    grid-column: 1 / -1;
}

.acao-organismo {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.acao-container {
    max-width: 1100px;
    margin: 0 auto;
}

.acao-organismo h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--main);
}

.acao-organismo p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.acao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.acao-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.acao-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.acao-icon {
    margin-bottom: 15px;
}

.acao-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.acao-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.acao-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

section#before-after {
    padding: 60px 20px;
    background: #fdf8ff;
    text-align: center;
}

#before-after h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #631f84;
}

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px;
    overflow: hidden;
    border-radius: 15px;
    height: 65vw;
    max-height: 550px;
}

.before-after-slider .slider-instruction {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    z-index: 4;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.05); }
}


.before-after-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.before-after-slider .before {
    z-index: 1;
}
.before-after-slider .after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.2s;
}


.before-after-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 3;
    cursor: ew-resize;
}

.before-after-slider input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 100%;
    background: transparent;
}
.before-after-slider input[type="range"]::-moz-range-track {
    width: 100%;
    height: 100%;
    background: transparent;
}

.before-after-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 60%, #9333ea 100%);
    border: 3px solid #9333ea;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.8);
    cursor: grab;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.before-after-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.before-after-slider input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.slider-instruction {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #9333ea;
    font-weight: bold;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    pointer-events: none;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.benefit {
    text-align: center;
    max-width: 180px;
    transition: transform 0.3s, filter 0.3s;
}

.benefit img {
    width: 70px;
    margin-bottom: 10px;
}

.benefit:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(195, 126, 219, 0.6));
}

#before-after h3 {
    margin: 60px 0 30px;
    font-size: 2em;
    color: #444;
}

.swiper.testimonials {
    max-width: 700px;
    margin: auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 15px;
}

.swiper-slide {
    background: #fff;
    padding: 30px;
}

.swiper-slide p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
}

.swiper-slide span {
    font-size: 0.9em;
    color: #666;
}

.cta-before-after {
    margin-top: 60px;
}

.cta-before-after p {
    font-size: 1.4em;
    margin-bottom: 40px;
}

.cta-button {
    background: linear-gradient(to right, var(--main-light), #631f84);
    color: #fff;
    font-size: 1.4em;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(195,126,219,0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

section#formula {
    background: linear-gradient(135deg, #9123bb, var(--main-light));
    color: var(--main-dark);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

#main-title-formula {
    font-size: 2.8em;
    text-align: center;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

article#ingredients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 30px;
    background-color: white;
    border: 1px solid var(--main-light);
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#ingredients-title {
    width: 100%;
    text-align: center;
    font-size: 2.2em;
    background: linear-gradient(to right, #631f84, #c37edb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.ingredient-box {
    text-align: center;
    padding: 20px;
    background-color: #f7e8ff;
    border-radius: 14px;
    box-shadow: inset 0 0 12px rgba(195, 101, 234, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1 1 250px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.ingredient-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(99, 31, 132, 0.3);
}

.ingredient-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.ingredient-box h3 {
    font-size: 1.4em;
    color: var(--main);
}

.ingredient-box p {
    font-size: 1em;
    color: var(--main-dark);
}

article#development {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background-color: white;
    border: 1px solid var(--main-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
}

#development-media img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(99, 31, 132, 0.25);
}

#development-text {
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#development-text h2 {
    font-size: 2em;
    background: linear-gradient(to right, #631f84, #c37edb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#development-text p {
    text-align: justify;
    font-size: 1.2em;
    color: var(--main-dark);
}

.development-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 38px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: visible;
    cursor: pointer;

    background: #8e18bd;
    color: #fff;
    text-decoration: none;
    transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s;
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    transform-origin: center;
}

.development-button::after {
    content: "➜";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) translateX(6px);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
}

.development-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(99,31,132,0.18);
}

.development-button:hover::after{
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.development-button:focus-visible {
    outline: 3px solid rgba(195,126,219,0.28);
    outline-offset: 4px;
}

article#bio-glow-unique {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    justify-items: stretch;
    background-color: white;
    padding: 30px;
    border: 1px solid var(--main-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
}

#unique-title {
    font-size: 2.2em;
    background: linear-gradient(to right, #631f84, #c37edb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
}

.unique-feature-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 160px;
    background-color: #f7e8ff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: inset 0 0 10px rgba(195, 101, 234, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.unique-feature-box:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(195, 126, 219, 0.6);
}

.unique-feature-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.unique-feature-box p {
    font-size: 0.95em;
    color: var(--main-dark);
    margin-top: 10px;
}

section#formula > .development-button {
    align-self: center;
}

section#nutricional-section {
    width: 100%;
    background: linear-gradient(135deg, #9123bb, var(--main-light));
    padding: 60px 20px;
    border-radius: 12px;
    margin: 40px auto;
    color: #fff;
}

.nutricional-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.nutricional-texto {
    flex: 1 1 40%;
}

.nutricional-texto h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    border-left: 6px solid #fff;
    padding-left: 12px;
}

.nutricional-texto p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #f2f2f2;
    text-align: justify;
}

.nutricional-imagem {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
}

.nutricional-imagem img {
    max-width: 90%;
    border-radius: 12px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}


.community-box {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.community-text-header h2 {
    font-size: 2.5em;
    color: var(--main);
    margin-bottom: 5px;
    text-align: justify;
}

.community-text-header p {
    font-size: 1.2em;
    color: var(--main);
    text-align: center;
}

.community-photos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.photo-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.photo-row img {
    width: calc(33.33% - 10px);
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.community-video {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.community-video h3 {
    font-size: 1.8em;
    color: var(--main);
}

.video-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.video-box {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    text-align: left;
}

.video-box .video-media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
}

.video-box .video-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-info {
    padding: 15px;
}

.video-info .video-title {
    font-weight: bold;
    font-size: 1.2em;
    color: var(--main);
}

.video-info .video-description {
    font-size: 1em;
    color: #555;
    margin-top: 5px;
}

.community-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.community-social h4 {
    font-size: 1.5em;
    color: var(--main);
    margin-top: 20px;
}

.community-social p {
    font-size: 1em;
    color: #555;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-icons img {
    width: 75px;
    height: 75px;
}

.cta-button {
    font-size: 1.5em;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #9123bb, var(--main-light));
    border-radius: 50px;
    padding: 20px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #4a3478;
    transform: translateY(-2px);
}

#offers {
    padding: 80px 20px;
    background: linear-gradient(135deg, #9123bb, var(--main-light));
    text-align: center;
    color: #fff;
}

#offers h2 {
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 10px;
}

.offers-subtitle {
    font-size: 1.2em;
    margin-bottom: 50px;
    opacity: 0.9;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.offer-card {
    background: #fff;
    color: #333;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.offer-card img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.offer-card:hover {
    transform: translateY(-5px);
}
.offer-card.destaque {
    border: 3px solid var(--main-light);
}

.offer-card.destaque:hover {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--main-light);
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9em;
}

.offer-card h3 {
    font-size: 1.6em;
    margin-bottom: 4px;
    color: #9123bb;
}

.offer-desc {
    font-size: 1em;
    margin-bottom: 14px;
    color: #555;
}

.offer-price {
    font-size: 2em;
    font-weight: 700;
    margin: 12px 0 4px;
    color: #10b981;
}

.offer-installments {
    font-size: 1em;
    margin-bottom: 20px;
    color: #333;
}

.btn-offer {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-offer:hover {
    background: #0d966b;
}
.offer-note {
    display: block;
    margin-top: 14px;
    font-size: 0.9em;
    opacity: 0.8;
}

#contact-us {
    padding: 80px 20px;
    background: #fdf8ff;
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

#contact-us h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--main);
}

.contact-subtitle {
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s;
}

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

.contact-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.contact-button {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.contact-button:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.whatsapp {
    background: #25d366;
    color: #fff;
}

.whatsapp:hover {
    background: #128c7e;
}

.email {
    background: #9123bb;
    color: #fff;
}

.email:hover {
    background: #a966c9;
}

#faq {
    padding: 80px 20px;
    background: linear-gradient(135deg, #9123bb, var(--main-light));
    text-align: center;
}

#faq h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
}

.faq-question {
    width: 100%;
    background: none;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    padding: 16px 0;
    border: none;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    text-align: center;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.4em;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    color: #fff;
}

.faq-answer p {
    margin: 12px 0 0;
    font-size: 1em;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

footer {
    background: linear-gradient(135deg, #631f84, #9123bb);
    color: #fff;
    padding: 60px 20px 20px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col-1 {
    flex: 1 1 250px;
}

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

.footer-col-1 p {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col-2,
.footer-col-3,
.footer-col-4 {
    flex: 1 1 150px;
}

.footer-col-2 h4,
.footer-col-3 h4,
.footer-col-4 h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-col-2 h4::after,
.footer-col-3 h4::after,
.footer-col-4 h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--main-light);
    margin-top: 8px;
}

.footer-col-2 ul,
.footer-col-3 ul {
    list-style: none;
    padding: 0;
}

.footer-col-2 ul li,
.footer-col-3 ul li {
    margin-bottom: 12px;
}

.footer-col-2 a,
.footer-col-3 a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    transition: color 0.3s;
}

.footer-col-2 a:hover,
.footer-col-3 a:hover {
    color: #fff;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons-footer img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icons-footer img:hover {
    transform: scale(1.1);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.payment-icons img {
    width: 48px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s, filter 0.3s;
}

.payment-icons img:hover {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(70%) sepia(80%) hue-rotate(260deg) saturate(200%) brightness(110%);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
}