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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* montserrat-regular */
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Variáveis de cores */
:root {
    --primary-color: #CE0E2D;
    --secondary-color: #CE0E2D;
    --accent-color: #700E19;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
}

/* Header - Tarja simples */
.header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 0.8rem 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700; /* montserrat-bold */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}
    text-overflow: ellipsis;
}

/* Esconder navegação */
.nav {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray), #fff);
    padding: 0px 0 60px;
    min-height: auto;
    display: flex;
    align-items: flex-start;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 20px;
}

.hero-text {
    text-align: center;
}

/* Logo section in hero */
.logo-section {
    margin-bottom: 1rem;
    text-align: center;
}

.hero-logo {
    max-width: 220px;
    height: auto;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.highlight-text {
    color: #dc2626;
    font-weight: bold;
}

/* Guarantee Banner */
.guarantee-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.guarantee-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}



/* Formula Natural Section */
.formula-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #700E19, #CE0E2D);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.formula-section .container {
    position: relative;
    z-index: 2;
}

.formula-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.formula-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.formula-section .section-header p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.formula-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    height: 100%;
}

.product-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    width: 100%;
}

.formula-product {
    width: 500px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.6));
    animation: float 4s ease-in-out infinite;
}

/* Botão CTA na Formula Section */
.formula-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

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

.ingredient-item {
    position: absolute;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-in-out;
    max-width: 200px;
    z-index: 15;
}

.ingredient-name {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.ingredient-desc {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 400;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    line-height: 1.3;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.ingredient-item:hover .ingredient-name {
    transform: scale(1.1);
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    color: #ffd700;
}

.ingredient-item:hover .ingredient-desc {
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* Posicionamento dos ingredientes ao redor do produto */
.ingredient-1 {
    top: 5%;
    left: 15%;
    animation-delay: 0.2s;
}

.ingredient-2 {
    top: 5%;
    right: 10%;
    animation-delay: 0.4s;
}

.ingredient-3 {
    top: 40%;
    left: 5%;
    animation-delay: 0.6s;
}

.ingredient-4 {
    top: 40%;
    right: 5%;
    animation-delay: 0.8s;
}

.ingredient-5 {
    bottom: 10%;
    left: 10%;
    animation-delay: 1s;
}

.ingredient-6 {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.2s;
}

.ingredient-7 {
    bottom: -10%;
    left: 40%;
    animation-delay: 1.4s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.1rem !important;
    margin-bottom: 1.8rem !important;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem !important;
    font-size: 1.05rem !important;
    font-weight: 500; /* montserrat-medium */
    padding: 0.1rem 0 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.check {
    background: var(--secondary-color);
    color: #ffffff !important;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700; /* montserrat-bold */
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(206, 14, 45, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(206, 14, 45, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    margin: 0.5rem;
}

/* Botão de Desconto Especial */
.btn-primary.discount-btn {
    background: linear-gradient(135deg, #700E19, #CE0E2D);
    color: #ffffff;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(112, 14, 25, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

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

.btn-primary.discount-btn:hover:before {
    left: 100%;
}

.btn-primary.discount-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(112, 14, 25, 0.6);
    background: linear-gradient(135deg, #CE0E2D, #700E19);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(112, 14, 25, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(112, 14, 25, 0.7), 0 0 20px rgba(206, 14, 45, 0.3);
    }
}

/* Product Image */
.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(20px);
}

/* Image Overlay Text */
.image-overlay-text {
    position: absolute;
    top: 10%;
    right: 5%;
    z-index: 10;
}

.overlay-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.overlay-content p {
    margin: 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

/* Rating Section */
.rating-section {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.star {
    color: #FFD700;
    font-size: 22px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
    transition: transform 0.2s ease;
}

.star:hover {
    transform: scale(1.1);
}

.rating-text {
    font-size: 15px;
    color: #dc2626 !important;
    margin: 0;
    margin-left: 5px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    line-height: 1;
    white-space: nowrap;
}

/* Product Rating */
.product-rating {
    text-align: center;
    margin-top: 20px;
}

.stars {
    margin-bottom: 8px;
}

.star {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 0 2px;
}



/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 700; /* montserrat-bold */
}

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

.benefit-card {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(219, 133, 148, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500; /* montserrat-medium */
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700; /* montserrat-bold */
}

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

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

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

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic; /* montserrat-italic */
    font-weight: 400;
}

.author {
    font-weight: 500; /* montserrat-medium */
    color: var(--white);
    text-align: right;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700; /* montserrat-bold */
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee p {
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500; /* montserrat-medium */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.comparison-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #CE0E2D;
    margin-bottom: 20px;
    line-height: 1.2;
}

.comparison-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

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

.vittafemme-card {
}



.others-card {
    border: 3px solid #ef4444;
}

.card-header {
    padding: 20px 25px;
    text-align: center;
    color: white;
    font-weight: 700;
}

.vittafemme-card .card-header {
    background: #CE0E2D;
}

.hormonal-card .card-header {
    background: #CE0E2D;
}

.product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cross-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    z-index: 3;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.: 0.5px;
}

.card-badge.recommended {
    background: #dcfce7;
    color: #16a34a;
    border: 2px solid #16a34a;
}

.card-badge.not-recommended {
    background: #fef2f2;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefits-list,
.problems-list {
    list-style: none;
    padding: 25px;
    margin: 0;
    flex: 1;
    background: white;
}

.benefit-item,
.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: #4b5563;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    color: #374151;
}

.problem-item:hover {
    color: #374151;
}

.check-icon,
.cross-icon {
    font-size: 1rem;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}



.check-icon {
    background: transparent;
    color: #22c55e;
    fill: #22c55e;
}

.cross-icon {
    background: transparent;
    color: white;
    fill: white;
}

/* Product Comparison Section */
.product-comparison-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-comparison-container .left-side,
.product-comparison-container .right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 450px;
    position: relative;
}

.product-comparison-container .product-image {
    width: 320px;
    height: 320px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.product-comparison-container .product-image:hover {
    transform: translateY(-8px);
}

.product-comparison-container .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.product-comparison-container .info-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    width: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-comparison-container .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CE0E2D, #700E19);
}

.product-comparison-container .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(206, 14, 45, 0.2);
}

.product-comparison-container .info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #CE0E2D;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.product-comparison-container .info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #CE0E2D, #700E19);
    border-radius: 2px;
}

.product-comparison-container .vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #CE0E2D 0%, #700E19 100%);
    border-radius: 50%;
    color: white;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 3px;
    box-shadow: 0 15px 35px rgba(206, 14, 45, 0.4);
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    border: 4px solid white;
    margin-top: 120px;
}

.product-comparison-container .vs-divider::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #CE0E2D, #700E19);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.product-comparison-container .vs-divider:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 45px rgba(206, 14, 45, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

/* Responsive Design */
@media (max-width: 768px) and (min-width: 481px) {
    .header {
        padding: 1rem 0;
    }
    
    .logo h1 {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-logo {
        max-width: 160px;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .guarantee-items {
        gap: 2rem;
    }
    
    .guarantee-item {
        font-size: 1rem;
    }
    
    .guarantee-icon {
        width: 36px;
        height: 36px;
    }
    
    .overlay-content {
        padding: 1.2rem 1.5rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }





    .benefit-icon {
        width: 32px;
        height: 32px;
    }

    .benefit-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .benefit-item span {
        font-size: 0.85rem;
    }

    .vs-divider {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
        margin-top: 0;
        order: -1;
        margin-bottom: 1rem;
        align-self: center;
    }

    /* Formula Section - Tablets */
    .formula-section {
        padding: 60px 0;
        min-height: 70vh;
    }

    .formula-section .section-header h2 {
        font-size: 2.2rem;
    }

    .formula-section .section-header p {
        font-size: 1.1rem;
    }

    .product-center {
        height: 500px;
    }

    .formula-product {
        width: 350px;
    }
    
    .formula-cta {
        margin-top: 60px;
    }

    .ingredient-item {
        max-width: 180px;
    }
    
    .ingredient-name {
        font-size: 1.4rem;
    }
    
    .ingredient-desc {
        font-size: 0.8rem;
    }

    .ingredient-1 {
        top: 12%;
        left: 15%;
    }

    .ingredient-2 {
        top: 12%;
        right: 15%;
    }

    .ingredient-3 {
        top: 45%;
        left: 8%;
    }

    .ingredient-4 {
        top: 45%;
        right: 8%;
    }

    .ingredient-5 {
        bottom: 25%;
        left: 15%;
    }

    .ingredient-6 {
        bottom: 25%;
        right: 15%;
    }

    .ingredient-7 {
        bottom: 5%;
        left: 45%;
    }


    
    .rating-section {
        margin-top: 15px;
        gap: 10px;
    }
    
    .star {
        font-size: 20px;
    }
    
    .rating-text {
        font-size: 14px;
        color: #dc2626;
        font-weight: bold;
    }
    
    .benefits h2,
    .testimonials h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .guarantee {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary.large {
        width: 80%;
        max-width: 300px;
    }
    
    .btn-primary.discount-btn {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        width: 90%;
        max-width: 350px;
    }

    /* Para Você Section - Tablet */
    .para-voce-section {
        padding: 60px 0;
    }

    .para-voce-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .para-voce-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .para-voce-left {
        order: 1;
    }

    .para-voce-right {
        order: 2;
    }

    .sintomas-grid {
        max-width: 600px;
        margin: 0 auto;
        gap: 8px;
    }

    .sintoma-card {
        padding: 10px 12px;
    }

    .sintoma-icon {
        width: 18px;
        height: 18px;
        font-size: 14px;
    }

    /* Depoimentos responsivo - Tablet */
    .depoimentos-section {
        padding: 60px 0;
    }

    .depoimentos-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

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

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    .author-details h4 {
        font-size: 1rem;
    }

    .author-details span {
        font-size: 0.85rem;
    }

    /* Video Testimonials Responsive - Tablet */
    .video-testimonials-section {
        padding: 60px 0;
    }

    .video-testimonials-header h2 {
        font-size: 2.5rem;
    }

    .video-testimonials-header p {
        font-size: 1.1rem;
    }

    .video-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 15px;
    }

    .video-testimonial-card {
        padding: 20px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .video-author h4 {
        font-size: 1.1rem;
    }

    /* Why VittaFemme Section - Tablet */
    .why-vittafemme-section {
        padding: 60px 0;
    }

    .why-vittafemme-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #CE0E2D;
    }

    .feature-badges {
        gap: 15px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    /* Quality of Life Section - Tablets */
    .quality-life-section {
        padding: 60px 0;
    }

    .quality-life-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .quality-life-section p {
        font-size: 1.1rem;
    }

    /* Hyped Product Section - Tablets */
    .hyped-product-section {
        padding: 60px 0;
    }

    .hyped-product-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hyped-product-section p {
        font-size: 1.1rem;
    }

    /* Veja Comprova Section - Tablets */
    .veja-comprova-section {
        padding: 50px 0;
    }

    .veja-comprova-image {
        max-width: 900px;
    }

    /* Produtos Section - Tablets */
    .produtos-section {
        padding: 60px 0;
    }

    .produtos-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

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

    .produto-destaque {
        transform: scale(1.01);
    }

    .produto-header h3 {
        font-size: 1.1rem;
    }

    .produto-caixas {
        font-size: 1.2rem;
        padding: 12px;
    }

    .preco-parcelado {
        font-size: 1.6rem;
    }

    .btn-comprar {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .garantia-item span {
        font-size: 0.55rem;
    }

    .btn-comprar-agora {
        padding: 18px 50px;
        font-size: 1.2rem;
    }

    .selos-garantia {
        gap: 30px;
    }

    .benefits-list li,
    .drawbacks-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    /* Comparison Section - Tablets */
    .comparison-section {
        padding: 60px 0;
    }

    .comparison-section .section-header h2 {
        font-size: 2.2rem;
    }

    .comparison-container {
        gap: 30px;
        padding: 0 15px;
    }

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

    .card-header {
        padding: 25px 20px 15px;
    }

    .card-content {
        padding: 20px;
    }

    .benefit-item,
    .problem-item {
        font-size: 0.9rem;
        margin-bottom: 14px;
        padding: 10px 0;
    }

    /* Product Comparison Section - Tablets */
    .product-comparison-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
        max-width: 800px;
    }

    .product-comparison-container .vs-divider {
        width: 80px;
        height: 80px;
        font-size: 1.4rem;
        order: 2;
        margin: 30px 0;
    }

    .product-comparison-container .left-side {
        order: 1;
        max-width: 100%;
    }

    .product-comparison-container .right-side {
        order: 3;
        max-width: 100%;
    }

    .product-comparison-container .product-image {
        width: 280px;
        height: 280px;
        margin-bottom: 20px;
        border-radius: 10px;
        overflow: hidden;
    }

    .product-comparison-container .info-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px 25px;
    }

    .product-comparison-container .info-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

}

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

    /* Hero Benefits - Mobile */
    .hero-benefits {
        gap: 0.1rem !important;
        margin-bottom: 1.2rem !important;
    }

    .benefit-item {
        gap: 0.4rem !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
        padding: 0.1rem 0 !important;
        line-height: 1.1 !important;
    }

    /* Rating Section - Mobile */
    .rating-section {
        margin-top: 35px !important;
    }

    /* Formula Section - Mobile */
    .formula-section {
        padding: 60px 0 !important;
        min-height: auto !important;
    }

    .formula-section .section-header h2 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }

    .formula-section .section-header p {
        font-size: 1.1rem !important;
        margin-bottom: 40px !important;
    }

    .product-center {
        flex-direction: column !important;
        height: auto !important;
        gap: 30px !important;
    }

    .formula-product {
        width: 280px !important;
        order: 2 !important;
        margin-top: 20px !important;
    }

    .ingredient-item {
        position: static !important;
        max-width: 100% !important;
        width: 100% !important;
        min-height: 120px !important;
        height: 120px !important;
        margin-bottom: 20px !important;
        padding: 15px !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 10px !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .ingredient-name {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }

    .ingredient-desc {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }

    .formula-content {
        padding: 0 15px !important;
    }

    .formula-cta {
        margin-top: 40px !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 15px !important;
    }

    .formula-cta .btn-primary {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }

    /* Reorganizar ingredientes em grid para mobile */
    .ingredient-1, .ingredient-2, .ingredient-3, .ingredient-4, 
    .ingredient-5, .ingredient-6, .ingredient-7 {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        order: 1 !important;
    }

    /* Para Você Section - Mobile */
    .para-voce-section {
        padding: 40px 0 !important;
    }

    .para-voce-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
        padding: 0 15px !important;
    }

    .para-voce-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        grid-template-columns: none !important;
        padding: 0 15px !important;
    }

    .para-voce-left {
        order: 1 !important;
        text-align: center !important;
    }

    .para-voce-right {
        order: 2 !important;
    }

    .para-voce-image {
        margin-bottom: 20px !important;
    }

    .modelo-image {
        max-width: 280px !important;
        width: 100% !important;
    }

    .para-voce-subtitle {
        font-size: 0.95rem !important;
        padding: 15px !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .sintomas-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: none !important;
    }

    .sintoma-card {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }

    .sintoma-icon {
        flex-shrink: 0 !important;
        width: 20px !important;
        height: 20px !important;
        margin-top: 2px !important;
    }

    .sintoma-card span {
         font-size: 0.9rem !important;
         line-height: 1.4 !important;
         flex: 1 !important;
     }

     /* Video Testimonials Section - Mobile */
     .video-testimonials-section {
         padding: 40px 0 !important;
     }

     .video-testimonials-header {
         margin-bottom: 40px !important;
         padding: 0 15px !important;
     }

     .video-testimonials-header h2 {
         font-size: 1.8rem !important;
         line-height: 1.3 !important;
         margin-bottom: 15px !important;
     }

     .video-testimonials-header p {
         font-size: 1rem !important;
         letter-spacing: 1px !important;
     }

     .video-carousel-container {
         padding: 0 15px !important;
         max-width: none !important;
     }

     .video-carousel {
         display: flex !important;
         flex-direction: column !important;
         gap: 20px !important;
         grid-template-columns: none !important;
         padding: 0 !important;
     }

     .video-testimonial-card {
         width: 100% !important;
         max-width: 350px !important;
         margin: 0 auto !important;
         padding: 20px !important;
     }

     .video-container {
         aspect-ratio: 9/16 !important;
         margin-bottom: 15px !important;
         max-height: 400px !important;
     }

     .play-button {
         width: 50px !important;
         height: 50px !important;
         font-size: 20px !important;
     }

     .video-author {
         text-align: center !important;
     }

     .video-author h4 {
         font-size: 1rem !important;
         margin-bottom: 8px !important;
     }

     .video-stars {
         font-size: 1rem !important;
     }

     /* Why VittaFemme Section - Mobile */
    .why-vittafemme-section {
        padding: 40px 0;
    }

    .why-vittafemme-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #CE0E2D;
    }

    .feature-badges {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        justify-content: center !important;
        margin-top: 20px !important;
        padding: 0 15px !important;
        max-width: 400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        flex-direction: initial !important;
        align-items: initial !important;
    }

    .feature-badge {
        padding: 10px 12px !important;
        font-size: 0.8rem !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Quality of Life Section - Mobile */
    .quality-life-section {
        padding: 40px 0;
    }

    .quality-life-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .quality-life-section p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Hyped Product Section - Mobile */
    .hyped-product-section {
        padding: 40px 0;
    }

    .hyped-product-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hyped-product-section p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Veja Comprova Section - Mobile */
    .veja-comprova-section {
        padding: 30px 0;
    }

    .veja-comprova-image {
        max-width: 100%;
        margin: 0 10px;
    }

    /* Produtos Section - Mobile */
    .produtos-section {
        padding: 40px 0;
    }

    .produtos-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .produto-destaque {
        transform: none;
        border: 3px solid #FF6B35;
    }

    .mais-vendido-badge {
        width: 100px !important;
        height: auto !important;
        top: 280px !important;
        right: 5px !important;
        font-size: initial !important;
        padding: initial !important;
    }

    .produto-header {
        padding: 15px 10px 8px;
    }

    .produto-header h3 {
        font-size: 1rem;
    }

    .produto-caixas {
        font-size: 1.1rem;
        padding: 12px;
    }

    .produto-image {
        padding: 20px 15px;
    }

    .preco-info {
        padding: 15px;
    }

    .preco-parcelado {
        font-size: 1.4rem;
    }

    .btn-comprar {
        font-size: 0.95rem;
        padding: 12px 20px;
        margin: 0 15px 15px;
    }

    .garantias {
        padding: 10px 5px;
    }

    .garantia-item img {
        width: 25px;
        height: 25px;
    }

    .garantia-item span {
        font-size: 0.5rem;
        max-width: 70px;
    }

    .btn-comprar-agora {
        padding: 15px 40px;
        font-size: 1.1rem;
        margin: 0 15px;
    }

    .selos-garantia {
        gap: 20px;
        padding: 0 15px;
    }

    .selo {
        max-width: 120px;
    }

    .selo img {
        width: 40px;
        height: 40px;
    }

    .selo span {
        font-size: 0.7rem;
    }

    .feature-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }



    .left-side, .right-side {
        flex-direction: column;
        justify-content: center;
    }

    .left-side {
        order: 1;
    }

    .vs-divider {
        order: 2;
        margin: 20px auto !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
        align-self: center !important;
        width: 80px !important;
        height: 80px !important;
        font-size: 1.5rem !important;
    }

    .right-side {
        order: 3;
    }

    .benefits-list, .problems-list {
        max-width: 280px;
    }

    .benefit-item, .problem-item {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .check-icon, .cross-icon {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }

    .product-image img {
        max-width: 140px;
        border-radius: 10px;
    }

    .cross-overlay {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .vs-text {
        font-size: 1rem;
    }
    
    .header {
        padding: 1.2rem 0;
    }
    
    .logo h1 {
        font-size: 0.7rem;
        letter-spacing: 0px;
        white-space: normal;
        line-height: 1.1;
        padding: 0 10px;
    }
    
    .hero {
        padding: 20px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 10px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    
    .logo-section {
        margin-bottom: 1.5rem;
    }
    
    .hero-logo {
        max-width: 140px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }
    
    .hero-benefits {
        gap: 0.8rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .benefit-item {
        font-size: 1rem;
        gap: 0.8rem;
        justify-content: flex-start;
        text-align: left;
    }
    
    .check {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    .btn-primary {
         padding: 1rem 2rem;
         font-size: 1rem;
         width: 90%;
         max-width: 300px;
         margin: 0 auto;
         display: block;
         text-align: center;
     }
     
     .product-image {
         max-height: 350px;
         transform: translateY(0);
     }
     
     .image-overlay-text {
         position: absolute;
         top: 5%;
         right: 3%;
         width: auto;
         max-width: 45%;
         z-index: 10;
     }
     
     .overlay-content {
         padding: 0.6rem 0.8rem;
         border-radius: 8px;
     }
     
     .overlay-content p {
         font-size: 0.75rem;
         margin: 0.1rem 0;
         line-height: 1.1;
     }
     
     .rating-section {
         margin-top: 15px;
         gap: 8px;
     }
     
     .star {
         font-size: 18px;
     }
     
     .rating-text {
         font-size: 12px;
     }
    
    .guarantee-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 0.5rem;
        justify-items: center;
    }
    
    .guarantee-item {
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        max-width: 120px;
    }
    
    .guarantee-icon {
        width: 28px;
        height: 28px;
    }
    
    .image-overlay-text {
        top: 10%;
        right: 5%;
    }
    
    .overlay-content {
        padding: 1rem 1.2rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
        margin: 0.2rem 0;
    }
    
    .product-image {
        max-height: 350px;
        transform: translateY(15px);
    }
    
    .rating-section {
        margin-top: 12px;
        gap: 8px;
        flex-direction: column;
    }
    
    .star {
        font-size: 18px;
    }
    
    .rating-text {
        font-size: 13px;
        color: #dc2626;
        font-weight: bold;
    }
    


    /* Formula Section - Smartphones */
    .formula-section {
        padding: 50px 0;
        min-height: 60vh;
    }

    .formula-section .section-header {
        margin-bottom: 60px;
        padding: 0 15px;
    }

    .formula-section .section-header h2 {
        font-size: 1.8rem;
    }

    .formula-section .section-header p {
        font-size: 1rem;
    }

    .formula-content {
        padding: 0 15px;
    }

    .product-center {
        height: 400px;
    }

    .formula-product {
        width: 280px;
    }

    .ingredient-item {
        max-width: 150px;
    }
    
    .ingredient-name {
        font-size: 1.1rem;
    }
    
    .ingredient-desc {
        font-size: 0.75rem;
    }
    
    .formula-cta {
        margin-top: 40px;
        padding: 0 15px;
    }

    .ingredient-1 {
        top: 10%;
        left: 8%;
    }

    .ingredient-2 {
        top: 10%;
        right: 8%;
    }

    .ingredient-3 {
        top: 40%;
        left: 3%;
    }

    .ingredient-4 {
        top: 40%;
        right: 3%;
    }

    .ingredient-5 {
        bottom: 20%;
        left: 8%;
    }

    .ingredient-6 {
        bottom: 20%;
        right: 8%;
    }

    .ingredient-7 {
        bottom: 3%;
        left: 42%;
    }

    
    .benefit-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .btn-primary.discount-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 1px;
        width: 95%;
        max-width: 280px;
        border-radius: 50px;
    }

    /* Para Você Section - Smartphone */
    .para-voce-section {
        padding: 50px 0;
    }

    .para-voce-content {
        gap: 30px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .para-voce-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .para-voce-subtitle {
        font-size: 0.9rem;
        padding: 15px;
    }

    .sintomas-grid {
        gap: 8px;
    }

    .sintoma-card {
        padding: 10px 12px;
        gap: 10px;
    }

    .sintoma-icon {
        width: 16px;
        height: 16px;
        font-size: 12px;
    }

    .sintoma-card span:last-child {
        font-size: 0.85rem;
    }

    /* Depoimentos responsivo - Smartphone */
    .depoimentos-section {
        padding: 40px 0;
    }

    .depoimentos-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
        border-radius: 15px;
    }

    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-author img {
        width: 45px;
        height: 45px;
    }

    .author-details h4 {
        font-size: 1rem;
    }

    .author-details span {
        font-size: 0.85rem;
    }

    /* Video Testimonials Responsive - Smartphone */
    .video-testimonials-section {
        padding: 40px 0;
    }

    .video-testimonials-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .video-testimonials-header p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .video-carousel {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 0 10px;
    }

    .video-testimonial-card {
        padding: 12px;
    }

    .video-container {
        margin-bottom: 12px;
    }

    .play-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .video-author h4 {
        font-size: 0.9rem;
    }

    .video-stars {
        font-size: 0.9rem;
    }

    /* Comparison Section - Mobile */
    .comparison-section {
        padding: 40px 0;
    }

    .comparison-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .comparison-section .section-header p {
        font-size: 1rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .vittafemme-card::before {
        font-size: 0.7rem;
        padding: 4px 10px;
        right: 15px;
    }

    .product-image {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .card-header {
        padding: 20px 15px 15px;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .card-content {
        padding: 15px;
    }

    .benefit-item,
    .problem-item {
        font-size: 0.85rem;
        margin-bottom: 12px;
        padding: 8px 0;
    }

    .check-icon,
    .cross-icon {
        min-width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }

    /* Product Comparison Section - Mobile */
    .product-comparison-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
        background: linear-gradient(135deg, rgba(206, 14, 45, 0.02), rgba(112, 14, 25, 0.02));
        border-radius: 15px;
        margin: 0 10px;
    }

    .product-comparison-container .vs-divider {
        width: 70px;
        height: 70px;
        font-size: 1.2rem;
        order: 2;
        margin: 25px 0;
        border: 3px solid white;
    }

    .product-comparison-container .left-side {
        order: 1;
        max-width: 100%;
    }

    .product-comparison-container .right-side {
        order: 3;
        max-width: 100%;
    }

    .product-comparison-container .product-image {
        width: 240px;
        height: 240px;
        margin-bottom: 20px;
        border-radius: 8px;
        overflow: hidden;
    }

    .product-comparison-container .info-card {
        max-width: 100%;
        padding: 25px 20px;
        margin: 0;
    }

    .product-comparison-container .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .product-comparison-container .info-card h3::after {
        width: 30px;
    }

}

/* Typewriter Animation */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--white);
    }
}

/* Para Você Section */
.para-voce-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.para-voce-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.para-voce-left {
    text-align: center;
}

.para-voce-image {
    margin-bottom: 30px;
}

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

.modelo-image:hover {
    transform: translateY(-5px);
}

.para-voce-subtitle {
    font-size: 1rem;
    color: #DB8594;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    padding: 20px;
    background: #FFF8F9;
    border-radius: 15px;
    border-left: 4px solid #DB8594;
}

.sintomas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.sintoma-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.sintoma-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sintoma-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.sintoma-card span:last-child {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #2d3748;
    font-weight: 500;
}

/* Depoimentos Section */
/* Testimonials Section - Novo Design Grid */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

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

.testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #DB8594, #CE0E2D);
    border-radius: 2px;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #718096;
    margin-top: 25px;
}

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

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.testimonial-quote {
    margin-top: 25px;
    flex-grow: 1;
}

.stars {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.testimonial-quote p::before {
    content: '"';
    font-size: 3rem;
    color: #DB8594;
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: serif;
    opacity: 0.4;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #DB8594;
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 3px 0;
}

.author-details span {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
    overflow: hidden;
}

.video-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.video-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.video-testimonials-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.video-testimonials-header p {
    font-size: 1.3rem;
    color: #DB8594;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

.video-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
}



.video-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}



.video-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DB8594, #CE0E2D);
}

.video-testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 0;
}

.play-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DB8594, #CE0E2D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(219, 133, 148, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(219, 133, 148, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(219, 133, 148, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(219, 133, 148, 0.4);
    }
}

.video-author {
    text-align: center;
}

.video-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Why VittaFemme Section - Clean Design */
.why-vittafemme-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.why-vittafemme-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-vittafemme-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #CE0E2D;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.feature-badge {
    background: #f8f9fa;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.feature-badge:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* Quality of Life Section */
.quality-life-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #CE0E2D 0%, #A00B24 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quality-life-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.quality-life-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quality-life-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hyped Product Section */
.hyped-product-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #DB8594 0%, #CE0E2D 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hyped-product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="white" opacity="0.15"/><circle cx="80" cy="80" r="1.5" fill="white" opacity="0.15"/><circle cx="60" cy="15" r="1" fill="white" opacity="0.1"/><circle cx="15" cy="70" r="1" fill="white" opacity="0.1"/><circle cx="85" cy="35" r="1" fill="white" opacity="0.1"/><polygon points="40,30 42,35 47,35 43,38 45,43 40,40 35,43 37,38 33,35 38,35" fill="white" opacity="0.08"/><polygon points="70,60 71,63 74,63 72,65 73,68 70,66 67,68 68,65 66,63 69,63" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkle)"/></svg>');
    pointer-events: none;
}

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

.hyped-product-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hyped-product-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Veja Comprova Section */
.veja-comprova-section {
    padding: 60px 0;
    text-align: center;
}

.veja-comprova-content {
    max-width: 1200px;
    margin: 0 auto;
}

.veja-comprova-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
}

/* Produtos Section */
.produtos-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.produtos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.card-wrapper {
    position: relative;
    overflow: visible;
    padding-top: 60px;
    margin-top: 20px;
}

.produto-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e0e0e0;
    overflow: hidden;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.produto-destaque {
    border: 3px solid #FF6B35;
    transform: scale(1.02);
}

.desconto-badge {
    position: absolute;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

.mais-vendido-badge {
    position: absolute;
    top: 350px;
    right: 10px;
    width: 80px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
    animation: pulse-selo 2.5s infinite;
}

@keyframes pulse-selo {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
    }
}

.produto-header {
    background: #f8f9fa;
    padding: 20px 15px 10px;
    border-bottom: 1px solid #e0e0e0;
}

.produto-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: capitalize;
}

.produto-caixas {
    background: #8B1538;
    color: white;
    padding: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.produto-image {
    padding: 30px 20px;
    background: white;
}

.produto-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.preco-info {
    padding: 20px;
    background: white;
}

.preco-original {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.preco-parcelado {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 5px;
}

.sem-juros {
    font-size: 0.8rem;
    color: #4CAF50;
    font-weight: 500;
}

.preco-vista {
    font-size: 1rem;
    color: #8B1538;
    font-weight: 600;
    margin-top: 5px;
}

.btn-comprar {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    transition: background 0.3s ease;
    animation: pulse-button 3s infinite;
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 12px rgba(76, 175, 80, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
    }
}

.btn-comprar:hover {
    background: #45a049;
}

.garantias {
    display: flex;
    justify-content: space-around;
    padding: 15px 10px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.garantia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.garantia-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.garantia-item span {
    font-size: 0.6rem;
    color: #666;
    text-align: center;
    line-height: 1.2;
    max-width: 80px;
}

.comprar-container {
    margin: 40px 0;
}

.btn-comprar-agora {
    background: linear-gradient(135deg, #CE0E2D 0%, #FF6B35 100%);
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(206, 14, 45, 0.3);
}

.btn-comprar-agora:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(206, 14, 45, 0.4);
}

.selos-garantia {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.selo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 150px;
}

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

.selo span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Responsividade para o Design Clean */
@media (max-width: 768px) {
    .why-vittafemme-section {
        padding: 60px 0;
    }

    .why-vittafemme-section .section-header h2 {
        font-size: 2rem;
    }


        margin-bottom: 20px;
    }

    .benefit-item, .problem-item {
        font-size: 0.9rem;
        padding: 10px 0;
        margin-bottom: 12px;
    }

    .check-icon, .cross-icon {
        min-width: 18px;
        height: 18px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-vittafemme-section {
        padding: 40px 0;
    }

    .why-vittafemme-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }



    .info-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .benefit-item, .problem-item {
        font-size: 0.85rem;
        gap: 10px;
        padding: 8px 0;
        margin-bottom: 10px;
    }

    .check-icon, .cross-icon {
        min-width: 16px;
        height: 16px;
        font-size: 0.9rem;
    }

    /* Hyped Product Section - Mobile Específico - COMPACTADO */
    .hyped-product-section {
        padding: 15px 0;
    }

    .hyped-product-section h2 {
        font-size: 1.4rem;
        margin-bottom: 5px;
        line-height: 1.0;
    }

    .hyped-product-section p {
        font-size: 0.85rem;
        line-height: 1.2;
        margin: 0;
    }
    
    .hyped-content {
        padding: 0 20px;
    }

    /* Veja Comprova - Imagem responsiva controlada por JavaScript */
    .veja-comprova-content {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .veja-comprova-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

.check-icon {
    background: transparent;
    color: #22c55e;
    fill: #22c55e;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.cross-icon {
    background: transparent;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.product-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.product-image img {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.1));
}

.cross-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dc3545;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.vs-divider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vs-text {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Advanced Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

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

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes - Removed for instant display */

/* Floating Animation for Product Images */
.product-img {
    animation: float 6s ease-in-out infinite;
}

.vittafemme-side .product-img {
    animation-delay: 0s;
}

.others-side .product-img {
    animation-delay: 3s;
}

/* Sparkle Effect */
.glow-effect::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 60%;
    right: 30%;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s infinite 1s;
}

/* Benefit Items - Animations removed for instant display */

/* Hover Effects Enhancement */
.feature-badge:hover .badge-icon {
    animation: float 1s ease-in-out infinite;
}

.benefit-item:hover .benefit-icon {
    animation: pulse 0.5s ease-in-out;
}

/* Background Particles Effect */
.why-vittafemme-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Text Glow Effect on Hover */
.section-header h2:hover {
    text-shadow: 0 0 20px rgba(255, 107, 157, 0.6), 0 0 40px rgba(255, 107, 157, 0.4);
    transition: text-shadow 0.3s ease;
}

/* Enhanced VS Circle */
.vs-circle:hover {
    animation: pulse 0.5s ease-in-out, float 2s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 107, 157, 0.8);
}

.video-stars {
    font-size: 1.1rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.processo-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
}

.processo-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #c44569);
    border-radius: 2px;
}

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

.processo-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.processo-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.processo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.processo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

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

.processo-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.processo-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Card especial para foto do produto */
.processo-destaque {
    background: linear-gradient(135deg, #CE0E2D, #700E19);
    color: white;
    padding: 40px 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.processo-destaque h3 {
    color: white;
    font-weight: 700;
    margin-top: 20px;
}

.produto-imagem {
    width: 230px;
    height: 230px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsivo */
@media (max-width: 768px) {
    .processo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .processo-column {
        gap: 20px;
    }
    
    .processo-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .processo-section {
        padding: 60px 0;
    }
    
    .processo-card {
        padding: 25px;
    }
}

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

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

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ff6b9d;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

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

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

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

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}
