/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DB8594;
    --primary-light: #E8A1B0;
    --primary-dark: #C76B7E;
    --primary-gradient: linear-gradient(135deg, #DB8594 0%, #E8A1B0 100%);
    --secondary-color: #F5F5F5;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(219, 133, 148, 0.15);
    --shadow-hover: 0 15px 40px rgba(219, 133, 148, 0.25);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: relative;
    width: 100%;
    background: #d30d2b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.attention-banner {
    padding: 15px 20px;
    text-align: center;
}

.attention-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 212, 170, 0.5);
    }
}

@keyframes seloPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    }
}

/* Hero Section */
.hero {
    padding: 60px 0 10px;
    background: linear-gradient(135deg, #FFF5F7 0%, #F8F0F2 100%);
    min-height: 30vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "content image";
    gap: 60px;
    align-items: center;
}

.hero-content {
    grid-area: content;
}

.hero-image {
    grid-area: image;
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.underlined-text {
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    -webkit-text-decoration: underline;
    -webkit-text-decoration-color: var(--primary-color);
    -webkit-text-decoration-thickness: 2px;
}

.highlighted-text {
    background-color: var(--primary-color);
    color: white;
    padding: 0px -1px;
    border-radius: 0px;
    font-weight: 600;
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-benefits {
    margin-bottom: 40px;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(219, 133, 148, 0.1);
    transition: var(--transition);
}

.hero-benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.hero-benefit-item i {
    color: #d30d2b;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.hero-cta {
    text-align: center;
    max-width: 100%;
}

.cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #700e19 0%, #d30d2b 100%);
    color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.guarantee {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0 0 -10px 0;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    grid-area: image;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px;
    margin-top: -100px;
}

.hero-logo {
    position: absolute;
    top: 480px;
    left: 60%;
    transform: translateX(-50%);
    width: auto;
    height: 130px;
    max-width: 400px;
    object-fit: contain;
    z-index: 4;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
}

.product-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    z-index: 2;
    position: relative;
    transition: var(--transition);
}

.product-image:hover {
    box-shadow: 0 20px 60px rgba(219, 133, 148, 0.3);
}

.product-bottle {
    position: absolute;
    bottom: -40px;
    right: 360px;
    width: auto;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(219, 133, 148, 0.2));
    transition: all 0.3s ease;
    z-index: 3;
}

/* Classe específica para a imagem do topo com efeito pulsante */
.product-bottle-top {
    position: absolute;
    bottom: -40px;
    right: 360px;
    width: auto;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(219, 133, 148, 0.2));
    transition: all 0.3s ease;
    z-index: 3;
    animation: pulse-bottle 2s ease-in-out infinite;
}

/* Animação de pulsar para o frasco */
@keyframes pulse-bottle {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(219, 133, 148, 0.2));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(219, 133, 148, 0.4));
    }
}

/* Container para as estrelas ao redor do frasco */
.product-bottle::before {
    content: '✦ ✧ ✦';
    position: absolute;
    top: -20px;
    left: -30px;
    right: -30px;
    bottom: -20px;
    color: #fff;
    font-size: 16px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    animation: starsFlash 2s ease-in-out infinite;
    z-index: 4;
    pointer-events: none;
}

.product-bottle::after {
    content: '✧ ✦ ✧';
    position: absolute;
    top: -20px;
    left: -30px;
    right: -30px;
    bottom: -20px;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    animation: starsFlash 2s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 4;
    pointer-events: none;
}

@keyframes starsFlash {
    0%, 70%, 100% {
        opacity: 0;
        transform: scale(0.5);
        text-shadow: none;
    }
    15%, 55% {
        opacity: 1;
        transform: scale(1.2);
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

/* Estrelas adicionais usando pseudo-elementos no container pai */
.product-showcase::before,
.product-showcase::after {
    content: '✦';
    position: absolute;
    color: #fff;
    font-size: 8px;
    animation: starTwinkle 3s ease-in-out infinite;
    z-index: 5;
    text-shadow: 0 0 8px #fff, 0 0 15px #fff;
}

.product-showcase::before {
    top: 30%;
    right: 320px;
    animation-delay: 0.8s;
}

.product-showcase::after {
    top: 75%;
    right: 280px;
    animation-delay: 2s;
}

@keyframes starFlash {
    0%, 75%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    12%, 63% {
        opacity: 1;
        transform: scale(1.5);
        box-shadow: 0 0 15px #fff, 0 0 25px #fff, 0 0 35px rgba(255, 215, 0, 0.6);
    }
}

@keyframes starTwinkle {
    0%, 80%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    15%, 65% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
        text-shadow: 0 0 12px #fff, 0 0 20px #fff, 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.product-bottle:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 15px 40px rgba(219, 133, 148, 0.4));
}

@keyframes bottlePulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(219, 133, 148, 0.2));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 15px 35px rgba(219, 133, 148, 0.3));
    }
}



/* Benefits Banner Section */
.benefits-banner {
    background: #d30d2b;
    padding: 10px 0;
    margin-top: 1px;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.benefits-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex: 1;
    justify-content: center;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefits-banner .benefit-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.benefits-banner .benefit-item:hover .benefit-icon {
    transform: scale(1.05);
}

.benefit-item span {
    white-space: nowrap;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    padding: 20px 0;
    background: #cf152d;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Título específico da seção benefícios */
#beneficios .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Subtítulo específico da seção benefícios */
#beneficios .section-subtitle {
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.benefits .benefit-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefits .benefit-icon i {
    font-size: 2rem;
    color: #d30d2b;
}

.benefits .benefit-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(14%) sepia(85%) saturate(6500%) hue-rotate(345deg) brightness(95%) contrast(95%);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How it Works */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F7 0%, #F8F0F2 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    position: relative;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    gap: 18px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d30d2b 0%, #a8a8a8 100%);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Avatar */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #d30d2b;
    position: relative;
}

.testimonial-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
    border-color: #db8594;
}

/* Rating */
.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Info */
.testimonial-info {
    margin-bottom: 8px;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.testimonial-age {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

/* Text */
.testimonial-text {
    position: relative;
}

/* Quality of Life Section */
.quality-life-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #d30d2b 0%, #d30d2b 50%, #d30d2b 100%);
    position: relative;
    overflow: hidden;
}

.quality-life-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}



.quality-life-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quality-life-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}



.quality-life-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    text-align: center;
}

.video-testimonials-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.video-testimonials-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 50px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.video-testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.video-testimonial {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
    position: relative;
    flex: 1 1 240px;
    max-width: 280px;
    min-width: 240px;
}

.video-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

/* Custom Video Player */
.custom-video-player {
    position: relative;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.custom-video-player video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Central Play Button Overlay */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(211, 13, 43, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.video-play-overlay:hover {
    background: rgba(211, 13, 43, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(211, 13, 43, 0.4);
}

.video-play-overlay svg {
    width: 24px;
    height: 24px;
    margin-left: 3px; /* Slight offset for visual centering */
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-video-player:hover .video-controls {
    opacity: 1;
}

.play-pause-btn {
    background: #d30d2b;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.play-pause-btn:hover {
    background: #b8091f;
    transform: scale(1.05);
}

.play-pause-btn svg {
    width: 16px;
    height: 16px;
}

.progress-container {
    flex: 1;
    margin: 0 8px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: #d30d2b;
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 2px;
}

.time-display {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 70px;
    text-align: right;
}

.video-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    text-transform: capitalize;
    line-height: 1.3;
}

.video-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: 8px;
}

.video-rating .star {
    color: #ffc107;
    font-size: 1rem;
}

/* Product Highlight Section */
.product-highlight-section {
    background: #cf152d;
    padding: 40px 0;
    text-align: center;
}

.product-highlight-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-highlight-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Proof Image Section */
.proof-image-section {
    background: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.proof-image {
    max-width: 100%;
    height: auto;
}

/* Responsividade para Depoimentos */
@media (max-width: 768px) {
    .product-highlight-section {
        padding: 30px 0;
    }
    
    .product-highlight-title {
        font-size: 1.8rem;
        padding: 0 20px;
        line-height: 1.4;
        margin: 0 0 8px 0;
    }
    
    .product-highlight-subtitle {
        font-size: 1rem;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    .proof-image-section {
        padding: 20px 10px;
    }
    
    .proof-image {
        margin: 0 auto;
        display: block;
        max-width: 100%;
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 20px;
        gap: 15px;
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-avatar img {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-age {
        font-size: 0.85rem;
        padding: 3px 10px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .testimonial-rating i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-highlight-title {
        font-size: 1.4rem;
        padding: 0 15px;
        line-height: 1.1;
        margin: 0 0 8px 0;
        word-spacing: -1px;
    }
    
    .quality-life-title {
        font-size: 1.2rem !important;
        margin-bottom: 12px;
        line-height: 1.2 !important;
        padding: 0 10px;
        word-spacing: normal !important;
        letter-spacing: normal !important;
        max-width: none !important;
        margin-left: auto;
        margin-right: auto;
        text-align: center !important;
    }
    
    .testimonials-grid {
        gap: 15px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 18px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        align-self: center;
        margin-bottom: 10px;
    }
    
    .testimonial-avatar img {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }
    
    .testimonial-content-wrapper {
        text-align: center;
    }
    
    .testimonial-rating {
        justify-content: center;
        margin-bottom: 4px;
    }
    
    .testimonial-rating i {
        font-size: 0.9rem;
        margin: 0 1px;
    }
    
    .testimonial-info {
        margin-bottom: 8px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-age {
        font-size: 0.8rem;
        padding: 2px 8px;
    }
    
    .testimonial-text {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .testimonial-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        top: -15px;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
}

/* Comprar Section */
#comprar {
    background: #700E19;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.9;
    color: white;
}

.pricing {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-card {
    background: var(--white);
    color: var(--text-dark);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    position: relative;
    max-width: 350px;
    width: 100%;
    flex: 1;
    min-width: 280px;
    overflow: visible;
}

.price-card.featured {
    border: 3px solid #ff6b35;
    transform: scale(1.05);
}

.price-header {
    background: var(--white);
    padding: 15px 10px 8px 10px;
    text-align: center;
    position: relative;
    margin-top: -20px;
}

.price-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: -5px 0 0 0;
    color: var(--text-dark);
}

.price-banner {
    background: #CE0E2D;
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: calc(100% + 40px);
    margin: 0 -20px 20px -20px;
    position: relative;
}

.caixas-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
}

.discount-text {
    font-size: 1rem;
    font-weight: 700;
}

.badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.selo-maisvendido {
    position: absolute;
    bottom: 200px;
    right: 15px;
    z-index: 10;
    animation: seloPulse 2.5s ease-in-out infinite;
}

.selo-maisvendido img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Product Images */
.product-image {
    text-align: center;
    margin: 0;
    padding: 0;
    background: transparent;
}

.product-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    border: none;
}

.price-info {
    padding: 20px;
    text-align: center;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.installment-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28A745;
    margin-bottom: 5px;
    display: block;
}

.sem-juros {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.cash-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #CE0E2D;
    margin-bottom: 20px;
}

.buy-button {
    display: block;
    background: #4CAF50;
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    text-align: center;
    transition: var(--transition);
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: #45a049;
}

/* Product Guarantees */
.product-guarantees {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin: 0 -20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.897);
    border-top: 1px solid rgba(139, 21, 56, 0.2);
    width: calc(100% + 40px);
    position: relative;
}

.product-guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-dark);
    text-align: center;
    flex: 1;
}

.product-guarantee-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.product-guarantee-item span {
    font-weight: 500;
    line-height: 1.2;
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    color: #ffffff;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.guarantee-item i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-content p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Medium Screens - 3 videos per row */
@media (max-width: 1024px) and (min-width: 769px) {
    .video-testimonials-grid {
        gap: 18px;
        max-width: 900px;
    }
    
    .video-testimonial {
        flex: 1 1 260px;
        max-width: 280px;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .attention-text {
        font-size: 1rem;
    }
    
    .hero-logo {
        height: 100px;
        top: 450px;
        left: 60%;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        gap: 40px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .product-image {
        max-height: 400px;
    }
    
    .product-bottle {
        max-height: 160px;
        bottom: -50px;
        right: 250px;
    }
    
    .product-bottle-top {
        max-height: 160px;
        bottom: -50px;
        right: 250px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-life-section {
        padding: 40px 0;
    }
    
    .quality-life-title {
        font-size: 2rem;
    }
    
    .quality-life-subtitle {
        font-size: 1rem;
    }
    
    .video-testimonials-section {
        padding: 60px 0;
    }
    
    .video-testimonials-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .video-testimonials-grid {
        gap: 20px;
        max-width: 600px;
    }
    
    .video-testimonial {
        flex: 1 1 280px;
        max-width: 280px;
    }
    
    .video-testimonial {
        padding: 20px;
        border-radius: 15px;
    }
    
    .custom-video-player {
        max-width: 350px;
    }
    
    .play-pause-btn {
        width: 35px;
        height: 35px;
    }
    
    .play-pause-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .video-name {
        font-size: 1.2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .attention-banner {
        padding: 12px 15px;
    }
    
    .attention-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero-logo {
        height: 80px;
        top: 300px;
        left: 60%;
    }
    
    .hero {
        padding: 20px 0 10px;
        min-height: 5vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "content";
        gap: 20px;
        text-align: center;
    }
    
    .hero-content {
        grid-area: content;
    }
    
    .hero-image {
        grid-area: image;
    }
    
    .hero-title {
        font-size: 1.1rem;
        margin-top: 20px;
        line-height: 1.2;
        letter-spacing: 0.3px;
        word-spacing: -1px;
    }
    
    .underlined-text {
        text-decoration: underline;
        text-decoration-color: var(--primary-color);
        text-decoration-thickness: 2px;
        text-underline-offset: 3px;
        -webkit-text-decoration: underline;
        -webkit-text-decoration-color: var(--primary-color);
        -webkit-text-decoration-thickness: 2px;
    }
    
    .cta-primary {
        font-size: 0.9rem;
        padding: 15px 20px;
        white-space: nowrap;
    }
    
    .product-showcase {
        padding: 5px;
        margin-top: 0px;
    }
    
    .product-image {
        max-height: 420px;
        margin: 12px 0;
        padding: 0;
    }
    
    .product-image img {
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }
    
    .product-bottle {
        max-height: 120px;
        bottom: -40px;
        right: 210px;
    }
    
    .product-bottle-top {
        max-height: 120px;
        bottom: -40px;
        right: 210px;
    }
    
    .nav-links {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .pricing {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .price-card {
        max-width: 100%;
        margin: 0 auto;
        width: calc(100% - 40px);
    }
    
    .selo-maisvendido {
        bottom: 50px;
        right: 10px;
    }

}

/* Responsive Comprar Section */
@media (max-width: 768px) {
    #comprar {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .pricing {
        gap: 50px;
        padding: 0 20px;
    }
    
    .price-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .price-header {
        padding: 12px 8px 6px 8px;
    }
    
    .price-header h3 {
        font-size: 1rem;
    }
    
    .price-banner {
        padding: 10px 0;
        font-size: 0.95rem;
    }
    
    .price-info {
        padding: 15px;
    }
    
    .old-price {
        font-size: 0.85rem;
    }
    
    .installment-price {
        font-size: 1.6rem;
    }
    
    .cash-price {
        font-size: 1rem;
    }
    
    .buy-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .product-guarantees {
        padding: 15px;
    }
    
    .product-guarantee-item {
        font-size: 0.7rem;
    }
    
    .product-guarantee-item img {
        width: 35px;
        height: 35px;
    }
    
    .guarantees {
        gap: 25px;
        padding: 0 20px;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
    }
}

/* Responsive Benefits Banner */
@media (max-width: 768px) {
    .benefits-banner {
        margin-top: -30px;
        padding: 18px 0;
    }
    
    .benefits-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 15px 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        font-size: 0.9rem;
        justify-content: center;
        gap: 5px;
        padding: 0;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Comprar Section Mobile */
    #comprar {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        padding: 0 15px;
        line-height: 1.1;
        word-spacing: -2px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .pricing {
        gap: 40px;
        padding: 0 15px;
    }
    
    .price-card {
        max-width: 100%;
        margin: 0 auto;
        width: calc(100% - 20px);
    }
    
    .price-header {
        padding: 10px 6px 4px 6px;
    }
    
    .price-header h3 {
        font-size: 0.95rem;
    }
    
    .price-banner {
        padding: 8px 0;
        font-size: 0.9rem;
        width: calc(100% + 20px);
        margin: 0 -10px 15px -10px;
    }
    
    .price-info {
        padding: 12px;
    }
    
    .old-price {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .installment-price {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }
    
    .sem-juros {
        font-size: 0.8rem;
    }
    
    .cash-price {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .buy-button {
        font-size: 0.95rem;
        padding: 14px 25px;
        width: calc(100% - 20px);
        margin: 0 10px 15px 10px;
    }
    
    .product-guarantees {
        padding: 12px;
        width: calc(100% + 20px);
        margin: 0 -10px;
    }
    
    .product-guarantee-item {
        font-size: 0.65rem;
        gap: 6px;
    }
    
    .product-guarantee-item img {
        width: 30px;
        height: 30px;
    }
    
    .guarantees {
        gap: 20px;
        padding: 0 15px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .guarantee-item {
        font-size: 0.75rem;
        justify-content: center;
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    .badge {
        top: -30px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .selo-maisvendido {
        bottom: 120px;
        right: 8px;
    }
    
    .selo-maisvendido img {
        width: 100px;
    }

    .benefits-banner {
        padding: 15px 0;
        margin-top: -1px;
    }
    
    .benefits-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 12px 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        font-size: 0.8rem;
        gap: 3px;
    }
    
    .benefit-icon {
        width: 42px;
        height: 42px;
    }
    
    .benefit-item span {
        font-size: 0.75rem;
    }
    
    .attention-banner {
        padding: 10px 10px;
    }
    
    .attention-text {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
        line-height: 1.3;
    }
    
    .hero-logo {
        height: 70px;
        top: 325px;
        left: 55%;
    }
    
    .hero {
        padding: 20px 0 10px;
        min-height: 5vh;
    }
    
    .hero-content {
        padding: 0 15px;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-top: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cta-primary {
        font-size: 0.8rem;
        padding: 12px 16px;
        white-space: nowrap;
    }
    
    .product-showcase {
        padding: 5px;
        margin-top: 0px;
    }
    
    .product-image {
        max-height: 340px;
        margin: 10px 0;
        padding: 0 5px;
    }
    
    .product-image img {
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 320px;
        object-fit: contain;
    }
    
    .product-bottle {
        max-height: 100px;
        bottom: -30px;
        right: 180px;
    }
    
    .product-bottle-top {
        max-height: 100px;
        bottom: -30px;
        right: 240px;
    }
    
    .benefits-grid,
    .steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .benefit-card,
    .step,
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quality-life-section {
        padding: 30px 0;
    }
    
    .quality-life-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .quality-life-subtitle {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .video-testimonials-section {
        padding: 40px 0;
    }
    
    .video-testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .video-testimonials-grid {
        gap: 20px;
        max-width: 100%;
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .video-testimonial {
        padding: 15px;
        border-radius: 15px;
        width: 100%;
        max-width: 320px;
        flex: none;
    }
    
    .custom-video-player {
        max-width: 100%;
    }
    
    .play-pause-btn {
        width: 35px;
        height: 35px;
    }
    
    .play-pause-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .video-controls {
        padding: 12px;
    }
    
    .time-display {
        font-size: 0.7rem;
        min-width: 70px;
    }
    
    .video-name {
        font-size: 1.1rem;
    }
    
}
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
    
    .price-card {
        padding: 25px 20px;
        margin: 0 auto;
        width: calc(100% - 20px);
    }
    
    .selo-maisvendido {
        bottom: 320px;
        right: 10px;
    }
    
    .selo-maisvendido img {
        width: 65px;
    }
    
    .new-price {
        font-size: 1.8rem;
    }
    
    .price-card .price {
        margin-top: 60px;
        margin-bottom: 15px;
    }
}

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

.benefit-card,
.testimonial-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.comparison-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    line-height: 1.2;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vittafemme-card {
    border-top: 5px solid #db8594;
}

.vittafemme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #db8594 0%, #700e19 100%);
}

.hormonal-card {
    border-top: 5px solid #d30d2b;
}

.hormonal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d30d2b 0%, #a8a8a8 100%);
}

.comparison-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.vittafemme-card h3 {
    color: #db8594;
}

.hormonal-card h3 {
    color: #d30d2b;
}

.benefits-list,
.drawbacks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li,
.drawbacks-list li {
    padding: 12px 0;
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
}

.benefits-list li:hover {
    background-color: rgba(0, 212, 170, 0.05);
    padding-left: 10px;
}

.drawbacks-list li:hover {
    background-color: rgba(231, 76, 60, 0.05);
    padding-left: 10px;
}

.benefits-list li:last-child,
.drawbacks-list li:last-child {
    border-bottom: none;
}

/* Responsive Comparison Section */
@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .comparison-card {
        padding: 30px 25px;
    }
    
    .comparison-card h3 {
        font-size: 1.5rem;
    }
    
    .benefits-list li,
    .drawbacks-list li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 50px 0;
    }
    
    .comparison-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .comparison-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .comparison-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .benefits-list li,
    .drawbacks-list li {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* Images Gallery Section */
.images-gallery {
    padding: 80px 0;
    background-color: #700e19;
    position: relative;
    overflow: hidden;
}

.images-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('img/logo-vitta-flower.png');
    background-size: 200px 200px;
    background-repeat: repeat;
    background-position: 0 0;
    opacity: 0.06;
    z-index: 1;
}

.images-gallery .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.images-gallery .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #a8a8a8;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Ingredients Section */
.ingredients {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F7 0%, #F8F0F2 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.ingredient-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.ingredient-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ingredient-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.ingredient-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Responsive Ingredients */
@media (max-width: 768px) {
    .ingredients {
        padding: 60px 0;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .ingredient-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .ingredients {
        padding: 50px 0;
    }
    
    .ingredient-card {
        padding: 20px 15px;
    }
    
    .ingredient-card h3 {
        font-size: 1.1rem;
    }
    
    .ingredient-card p {
        font-size: 0.9rem;
    }
}

.gallery-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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



.ingredients-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredients-list {
    width: 100%;
    max-width: 300px;
}

.ingredient-item {
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ingredient-item:last-child {
    margin-bottom: 0;
}

.ingredient-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ingredient-item p {
    font-size: 0.9rem;
    color: #a8a8a8;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Images Gallery */
@media (max-width: 768px) {
    .images-gallery {
        padding: 60px 0;
    }
    
    .images-gallery .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .images-gallery .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .gallery-images {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .ingredients-list {
        max-width: 100%;
    }
    
    .ingredient-item {
        margin-bottom: 20px;
        padding: 12px;
    }
    
    .ingredient-item h4 {
        font-size: 1rem;
    }
    
    .ingredient-item p {
        font-size: 0.85rem;
    }
    
    .gallery-image {
        max-width: 90%;
        border-radius: 12px;
    }
    

}

@media (max-width: 480px) {
    .images-gallery {
        padding: 50px 0;
    }
    
    .images-gallery .section-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
        padding: 0 15px;
    }
    
    .images-gallery .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .gallery-images {
        gap: 25px;
        padding: 0 15px;
    }
    
    .ingredient-item {
        margin-bottom: 15px;
        padding: 10px;
    }
    
    .ingredient-item h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .ingredient-item p {
        font-size: 0.8rem;
    }
    
    .gallery-image {
        max-width: 95%;
        border-radius: 10px;
    }
    

}

/* Frasco VittaFemme Styles */
.frasco-vitta {
    max-width: 350px;
    height: auto;
    border-radius: 15px;
}

/* Processo Section */
.processo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.processo-header {
    text-align: center;
    margin-bottom: 60px;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.processo-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.processo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.processo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #db8594, #e91e63);
}

.processo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #db8594, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.processo-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.processo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.processo-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #db8594;
    padding: 0;
    overflow: hidden;
}

.processo-product {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.processo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .processo-section {
        padding: 60px 0;
    }
    
    .processo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .processo-card-image {
        order: 6;
        padding: 0;
        overflow: hidden;
        height: 250px;
    }
    
    .processo-product {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .processo-card {
        padding: 30px 20px;
    }
    
    .processo-card.processo-card-image {
        padding: 0;
    }
    
    .processo-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .processo-icon img {
        width: 35px;
        height: 35px;
    }
    
    .processo-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        display: block;
    }
    
    .processo-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .processo-card {
        padding: 25px 15px;
    }
    
    .processo-card h3 {
        font-size: 1.2rem;
    }
    
    .processo-card p {
        font-size: 0.9rem;
    }
}
@keyframes frascoMobilePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(219, 133, 148, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(219, 133, 148, 0);
    }
}

@media (max-width: 768px) {
    .frasco-vitta {
        max-width: 280px;
        animation: frascoMobilePulse 2s ease-in-out infinite;
    }
    
    .product-bottle {
        animation: frascoMobilePulse 2s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .frasco-vitta {
        max-width: 180px;
    }
}

/* Symptoms Check Section */
.symptoms-check {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.symptoms-check .section-title {
    margin-bottom: 60px;
}

.symptoms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.modelo-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.call-to-action {
    background: linear-gradient(45deg, #700e19 0%, #700e19 30%, #700e19 70%, #700e19 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.call-to-action p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.symptoms-list {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #db8594;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.symptoms-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #db8594 0%, #700e19 100%);
}

.symptoms-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.symptom-item:last-child {
    border-bottom: none;
}

.symptom-item:hover {
    padding-left: 10px;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 8px;
}

.check-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.symptom-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Responsive Symptoms Check */
@media (max-width: 768px) {
    .symptoms-check {
        padding: 60px 0;
    }
    
    .symptoms-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .call-to-action {
        padding: 20px;
    }
    
    .call-to-action p {
        font-size: 1rem;
    }
    
    .symptoms-list {
        padding: 20px 15px;
        gap: 10px;
    }
    
    .symptom-item {
        padding: 8px 0;
        gap: 10px;
    }
    
    .symptom-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .symptoms-check {
        padding: 40px 0;
    }
    
    .symptoms-content {
        gap: 30px;
    }
    
    .call-to-action {
        padding: 18px;
    }
    
    .call-to-action p {
        font-size: 0.95rem;
    }
    
    .symptoms-list {
        padding: 18px 12px;
        gap: 8px;
    }
    
    .symptom-item {
        padding: 6px 0;
        gap: 10px;
    }
    
    .symptom-item p {
        font-size: 0.85rem;
    }
    
    .check-icon {
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-section .section-title {
        font-size: 1.6rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
        display: inline-block;
        width: 100%;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}