* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    touch-action: pan-y;
}

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

/* Variáveis CSS */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #FF8E9B;
    --accent-color: #FFB6C1;
    --vibrant-pink: #FF1493;
    --electric-pink: #FF69B4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --dark-color: #111827;
    --light-color: #ffffff;
    --title-color: #FFD700;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-inverse: #ffffff;
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-neon: 0 0 30px rgba(255, 20, 147, 0.6);
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;
    --radius-organic: 50% 20% / 10% 40%;
    --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes morphing {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Logo no topo - ALINHADO À ESQUERDA */
.top-logo {
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.top-logo h1 {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B6B, #FF8E9B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-align: left;
}

/* Faixas Animadas */
.animated-banner {
    position: relative;
    height: 50px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E9B 50%, #FFB6C1 100%);
    overflow: hidden;
    margin: -25px 0;
    transform: rotate(-1deg);
    box-shadow: var(--shadow-neon);
    z-index: 500;
    width: 105%;
    margin-left: -2.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-banner.reverse {
    transform: rotate(1deg);
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #FF6B6B 100%);
}

.banner-text {
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    width: max-content;
    line-height: 1;
    text-align: center;
}

.banner-scroll-right {
    animation: scrollRight 15s linear infinite;
}

.banner-scroll-left {
    animation: scrollLeft 18s linear infinite;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 25%, #FF6B6B 50%, #FFB6C1 75%, #FF8E9B 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    z-index: 1;
}

.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-blob);
    animation: float 8s ease-in-out infinite, morphing 10s ease-in-out infinite;
}

.blob1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.blob2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.blob3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    gap: 30px;
}

.hero-text {
    animation: fadeInUp 1s ease 0.3s both;
    order: 2;
}

.logo-text,
.brand-logo {
    display: none;
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    text-transform: uppercase;
}

.biotechnology-title {
    color: #f59e0b;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 900;
}

.hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 350px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s ease 0.5s both;
    order: 1;
}

.product-showcase {
    position: relative;
    z-index: 3;
}

.floating-product {
    width: 280px;
    height: 350px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 4;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

/* Botões */
.btn {
    padding: 18px 25px;
    border: none;
    border-radius: var(--radius-organic);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--vibrant-pink);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: white;
    border-color: var(--vibrant-pink);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

/* Seções */
.section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease both;
}

.section-title {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
    line-height: 1.5;
}

.title-fff {
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

/* SEÇÃO: Galeria de Produto OTIMIZADA */
.product-gallery {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E9B 50%, #FFB6C1 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.product-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Seção Superior */
.gallery-top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
    text-align: center;
    justify-content: center;
}

.gallery-text-content {
    color: white;
    max-width: 600px;
    text-align: center;
}

.gallery-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.gallery-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Seção Inferior - MODIFICADA para ter imagem-texto-imagem no desktop */
.gallery-bottom-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.gallery-center-content {
    order: 2;
}

.gallery-big-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    color: white;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.gallery-side-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-side-images .gallery-image:first-child {
    order: 1;
}

.gallery-side-images .gallery-image:last-child {
    order: 3;
}

.gallery-image {
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Caixa de Informações */
.info-header {
    text-align: center;
    margin-bottom: 15px;
}

.info-badge {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.info-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 5px;
}

.info-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
}

.info-divider {
    height: 2px;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    margin-bottom: 20px;
    border-radius: 2px;
}

.info-details p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.info-details p:last-child {
    margin-bottom: 0;
}

.info-details strong {
    color: var(--vibrant-pink);
    font-weight: 700;
}

/* Benefícios */
.benefits {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E9B 50%, #FFB6C1 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 20px;
    border-radius: var(--radius-blob);
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: morphing 8s ease-in-out infinite;
}

.benefit-card:nth-child(even) {
    animation-delay: 4s;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
    border-color: var(--vibrant-pink);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    border-radius: var(--radius-blob);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
    animation: float 4s ease-in-out infinite;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 800;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Como usar Section */
.how-to-use {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.how-to-use::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--light-color);
    border-radius: var(--radius-blob);
    padding: 25px 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
    text-align: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    border-radius: var(--radius-blob);
    padding: 3px;
    z-index: -1;
}

.step-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-neon);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Ingredientes Section */
.ingredients {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
    position: relative;
    overflow: hidden;
}

.ingredients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.ingredient-card {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--radius-blob);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 105, 180, 0.2);
    position: relative;
    overflow: hidden;
    animation: morphing 10s ease-in-out infinite;
}

.ingredient-card:nth-child(2n) {
    animation-delay: 5s;
}

.ingredient-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--vibrant-pink);
}

.ingredient-name {
    font-weight: 700;
    color: var(--vibrant-pink);
    margin-bottom: 8px;
    font-size: 1rem;
}

.ingredient-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Influencers */
.influencers {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.influencers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.influencers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.influencer-card {
    background: var(--light-color);
    border-radius: var(--radius-blob);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.influencer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    border-radius: var(--radius-blob);
    padding: 3px;
    z-index: -1;
}

.influencer-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-neon);
}

.influencer-card:hover .influencer-photo img {
    transform: scale(1.05);
}

.influencer-photo {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
}

.influencer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    filter: brightness(1.1) saturate(1.1);
}

.influencer-info {
    padding: 20px 15px;
    text-align: center;
    background: white;
}

.influencer-name {
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.influencer-followers {
    color: var(--vibrant-pink);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Depoimentos */
.testimonials {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 20, 147, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--light-color);
    padding: 25px 20px;
    border-radius: var(--radius-blob);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 105, 180, 0.2);
    position: relative;
    overflow: hidden;
    animation: morphing 10s ease-in-out infinite;
}

.testimonial-card:nth-child(2n) {
    animation-delay: 5s;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--vibrant-pink);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    color: var(--warning-color);
    font-size: 1.1rem;
    justify-content: center;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 600;
    text-align: center;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.customer-photo {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--vibrant-pink);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.3);
}

.customer-details h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 2px;
}

.customer-details span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Garantia e Aprovação ANVISA */
.guarantee-approval {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.guarantee-approval::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 20, 147, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 105, 180, 0.15) 0%, transparent 50%);
}

.guarantee-approval .section-title {
    color: white;
    text-transform: uppercase;
}

.guarantee-approval .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-main {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-blob);
    padding: 40px 30px;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    animation: morphing 12s ease-in-out infinite;
}

.guarantee-icon-main {
    text-align: center;
    margin-bottom: 25px;
}

.guarantee-icon-main i {
    font-size: 3rem;
    color: #10b981;
    animation: pulse 3s infinite;
}

.guarantee-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.guarantee-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-weight: 600;
}

.guarantee-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    text-align: center;
}

.pdrn-highlight {
    color: #FF69B4;
    font-weight: 800;
}

.anvisa-highlight {
    color: #10b981;
    font-weight: 800;
}

.guarantee-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.guarantee-feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 15px;
}

.guarantee-feature i {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.guarantee-feature-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.guarantee-bottom-text {
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    margin-top: 25px;
    backdrop-filter: blur(20px);
}

.guarantee-bottom-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

/* Checkout Section */
.checkout-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 20, 147, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 105, 180, 0.15) 0%, transparent 50%);
}

.checkout-section .section-title {
    color: white;
}

.checkout-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.checkout-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.countdown-timer-header {
    background: rgba(255, 20, 147, 0.2);
    border: 2px solid rgba(255, 20, 147, 0.5);
    border-radius: var(--radius-xl);
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer-header .countdown-title {
    color: #FFD700;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
}

.countdown-timer-header .countdown-display {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.product-main {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-blob);
    padding: 30px 20px;
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    animation: morphing 12s ease-in-out infinite;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
}

.product-image {
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: var(--radius-3xl);
    animation: float 5s ease-in-out infinite;
}

.product-details h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.old-price {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

/* Banner desconto PIX */
.pix-discount-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
}

.pix-logo {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.pix-logo svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.pix-text {
    flex: 1;
    color: #065f46;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pix-highlight {
    color: #10b981;
    font-weight: 900;
}

.quantity-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.quantity-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: center;
}

.quantity-btn {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    user-select: none;
}

.quantity-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.7);
}

.quantity-btn:active {
    transform: scale(1.05);
}

.quantity-display {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-xl);
    padding: 12px 25px;
    font-weight: 900;
    color: white;
    font-size: 1.3rem;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(20px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quantity-info {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Botão de Compra */
.yampi-buy-button-container {
    width: 100%;
    margin-bottom: 25px;
}

.custom-buy-button {
    width: 100%;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    border: none;
    padding: 18px 30px;
    border-radius: var(--radius-organic);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    text-decoration: none;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.custom-buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.custom-buy-button:hover::before {
    left: 100%;
}

.custom-buy-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.8);
}

/* Seção Unificada de Confiança */
.unified-trust-section {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    backdrop-filter: blur(10px);
    text-align: center;
}

/* Header com Avaliações */
.rating-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.stars-large {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
    color: #FFD700;
    font-size: 1.3rem;
}

.rating-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.rating-text strong {
    font-weight: 900;
    color: #10b981;
}

/* Selos de Confiança Unificados */
.trust-badges-unified {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.badge-unified {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.badge-unified:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.badge-unified i {
    font-size: 1.8rem;
    color: #10b981;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.badge-unified:hover i {
    transform: scale(1.1);
    color: #34d399;
}

.badge-unified span {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Garantia Unificada */
.guarantee-unified {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 16px;
    padding: 15px 20px;
    backdrop-filter: blur(20px);
}

.guarantee-icon-unified {
    font-size: 1.8rem;
    color: #10b981;
    animation: pulse 3s infinite;
    flex-shrink: 0;
}

.guarantee-text-unified {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* FAQ */
.faq {
    background: var(--light-color);
    overflow: hidden;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 105, 180, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: white;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 700;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.faq-question i {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-left: 10px;
}

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

.faq-answer {
    background: var(--light-color);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 18px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.footer-section i {
    margin-right: 8px;
    color: var(--vibrant-pink);
    width: 16px;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

.developer-credit {
    margin-top: 12px;
}

.developer-credit a {
    color: var(--vibrant-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: var(--electric-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* Responsividade */
@media (max-width: 480px) {
    .trust-badges-unified {
        gap: 10px;
    }

    .badge-unified i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .badge-unified span {
        font-size: 0.75rem;
    }

    .stars-large {
        font-size: 1.1rem;
        gap: 2px;
    }

    .rating-text {
        font-size: 0.9rem;
    }

    .guarantee-unified {
        flex-direction: column;
        gap: 8px;
        padding: 12px 15px;
    }

    .guarantee-text-unified {
        font-size: 0.85rem;
    }

    .gallery-image {
        height: 250px;
        max-width: 300px;
    }

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

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }

    .hero-text {
        flex: 1;
        order: 1;
    }

    .hero-image {
        flex: 1;
        order: 2;
    }

    .floating-product {
        width: 350px;
        height: 450px;
    }

    .hero-buttons {
        flex-direction: row;
        max-width: none;
    }

    /* Galeria - Responsividade tablet */
    .gallery-top-section {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }

    .gallery-text-content {
        flex: 1;
    }

    .gallery-image-top {
        flex: 1;
    }

    .gallery-image {
        max-width: 350px;
        height: 300px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .influencers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-content {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }

    .product-image {
        flex: 0 0 auto;
    }

    .product-details {
        flex: 1;
    }

    .checkout-container {
        max-width: 800px;
    }

    .product-main {
        padding: 40px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .animated-banner {
        height: 60px;
    }

    .banner-text {
        font-size: 1.2rem;
    }

    .guarantee-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .influencer-photo {
        height: 220px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 120px 0 80px;
    }

    .brand-logo {
        text-align: center;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease 0.1s both;
    }

    .logo-text {
        font-size: clamp(2.5rem, 8vw, 4rem);
        font-weight: 900;
        color: white;
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        letter-spacing: 2px;
    }

    .floating-product {
        width: 450px;
        height: 600px;
    }

    /* LAYOUT DESKTOP DA GALERIA - IMAGEM-TEXTO-IMAGEM */
    .gallery-bottom-section {
        display: grid;
        grid-template-columns: 300px 1fr 300px;
        gap: 40px;
        align-items: center;
    }

    .gallery-side-images {
        display: contents;
    }

    .gallery-side-images .gallery-image:first-child {
        order: 0;
        grid-column: 1;
    }

    .gallery-center-content {
        order: 0;
        grid-column: 2;
        text-align: center;
    }

    .gallery-side-images .gallery-image:last-child {
        order: 0;
        grid-column: 3;
    }

    .gallery-info-box {
        order: 0;
        grid-column: 1 / -1;
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-image {
        max-width: 100%;
        height: 350px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .ingredients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .influencers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .checkout-container {
        max-width: 900px;
    }

    .animated-banner {
        height: 70px;
    }

    .banner-text {
        font-size: 1.3rem;
    }

    .guarantee-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 350px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .floating-product {
        width: 220px;
        height: 280px;
    }

    .quantity-selector {
        gap: 15px;
    }

    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .quantity-display {
        padding: 10px 20px;
        font-size: 1.1rem;
        min-width: 70px;
    }

    .current-price {
        font-size: 1.7rem;
    }

    .animated-banner {
        height: 40px;
    }

    .banner-text {
        font-size: 0.8rem;
    }

    .trust-badges-unified {
        gap: 8px;
    }

    .badge-unified {
        padding: 8px 5px;
    }

    .badge-unified span {
        font-size: 0.7rem;
    }

    .gallery-image {
        height: 200px;
        max-width: 280px;
    }
}