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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    font-size: 2rem;
    color: #ffd700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background: white;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.trust-item p {
    color: #718096;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Ranking Section */
.ranking {
    padding: 80px 0;
    background: #f8fafc;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.product-card.winner {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2d3748;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.product-badge.secondary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.product-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

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

.product-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-rating {
    margin-top: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.product-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e6fffa;
    color: #00a693;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.highlight-item i {
    font-size: 0.8rem;
}

.product-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.9rem;
    color: #718096;
}

.product-benefits {
    margin-bottom: 2rem;
}

.product-benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.product-benefits ul {
    list-style: none;
}

.product-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.product-benefits li i {
    color: #00a693;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e6fffa;
    color: #00a693;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.product-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff5f5;
    color: #e53e3e;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background: white;
}

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

.methodology-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.methodology-item:hover {
    transform: translateY(-5px);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.methodology-icon i {
    font-size: 2rem;
    color: white;
}

.methodology-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.methodology-item p {
    color: #718096;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: #718096;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-links h4,
.footer-disclaimer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

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

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-disclaimer p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image {
        order: -1;
    }
    
    .product-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .trust-grid,
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-badge {
        left: 1rem;
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
}

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

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.trust-item,
.methodology-item {
    animation: fadeInUp 0.6s ease-out;
}

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

.summary {
    padding: 60px 0 20px;
    background: #fff;
}

.summary-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.summary-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.summary-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 auto;
}

.summary {
    padding: 60px 0 20px;
    background: #fff;
}

.summary-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.summary-content {
    flex: 1 1 340px;
    min-width: 280px;
}

.summary-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: left;
}

.summary-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.summary-img {
    flex: 0 0 260px;
    max-width: 320px;
    text-align: right;
}

.summary-img img {
    width: 100%;
    max-width: 260px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(102,126,234,0.09);
}

@media (max-width: 850px) {
    .summary-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .summary-content, .summary-img {
        max-width: 100%;
        text-align: center;
    }
    .summary-title, .summary-text {
        text-align: center;
    }
    .summary-img img {
        margin: 0 auto;
    }
    /* --- ESSA LINHA ABAIXO FAZ O TRUQUE! --- */
    .summary-img {
        order: 2; /* Fica logo após o título (que é order: 0 por padrão) */
    }
    .summary-text {
        order: 3;
    }
}

@media (min-width: 851px) {
    .summary-img {
        order: 0; /* Desktop padrão */
    }
    .summary-text {
        order: 0;
    }
}


.resumo-alerta {
    background: #fff700;
    color: #000;
    font-size: 1.13rem;
    padding: 18px 24px 14px 24px;
    border-radius: 6px;
    margin-bottom: 28px;
    box-sizing: border-box;
    font-weight: 500;
    box-shadow: 0 2px 10px 0 rgba(255, 214, 10, 0.09);
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.alerta-titulo {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.18rem;
    letter-spacing: 1px;
}
@media (max-width: 600px) {
    .resumo-alerta {
        padding: 14px 8px 10px 8px;
        font-size: 1rem;
    }
}

.final-summary {
    padding: 60px 0 35px 0;
    background: #f8fafc;
}

.final-summary-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 40px rgba(0,0,0,0.08);
    padding: 40px 36px 36px 36px;
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.final-summary-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #2d3748;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.final-summary-underline {
    width: 90px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 32px auto;
}

.final-summary-box p {
    color: #444;
    font-size: 1.13rem;
    margin-bottom: 15px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.final-summary-box p strong {
    color: #2d3748;
    font-weight: 700;
}

.final-summary-highlight {
    background: #fffbe5;
    border: 2px solid #ffe16a;
    color: #5a510a;
    font-size: 1.14rem;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
    margin: 24px 0 32px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    justify-content: center;   /* Centraliza o conteúdo horizontalmente */
    text-align: center;        /* Centraliza texto multi-linha */
}

.final-summary-trophy {
    font-size: 1.3em;
    margin-right: 5px;
}

.final-summary-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    margin: 0 auto 8px auto;
    width: 100%;
    max-width: 340px;
    text-align: center;
}

.final-summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.final-summary-warning {
    color: #e53e3e;
    text-align: center;
    font-size: 0.99rem;
    margin-top: 12px;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 700px) {
    .final-summary-box {
        padding: 18px 4vw 22px 4vw;
    }
    .final-summary-title {
        font-size: 1.65rem;  /* Mais destaque no mobile */
    }
    .final-summary-highlight {
        flex-direction: column;
        font-size: 1.05rem;
        gap: 4px;
        margin: 20px 0 22px 0;
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .final-summary-btn {
        width: 98vw;
        max-width: 360px;
        font-size: 1.04rem;
        padding: 14px 0;
        margin: 0 auto 10px auto;
    }
}

/* Para telas muito pequenas */
@media (max-width: 450px) {
    .final-summary-title {
        font-size: 1.22rem;
    }
    .final-summary-btn {
        font-size: 0.97rem;
        padding: 12px 0;
        min-width: 90vw;
    }
}


/* === Título sempre destacado e centralizado === */
.final-summary-title {
    font-size: 2.1rem !important;
    font-weight: 800;
    color: #2d3748;
    text-align: center !important;
    margin-bottom: 8px;
    letter-spacing: -1px;
    line-height: 1.15;
}
@media (max-width: 700px) {
    .final-summary-title {
        font-size: 4rem !important;
    }
}
@media (max-width: 480px) {
    .final-summary-title {
        font-size: 2rem !important;
    }
}

/* === Botão centralizado e com largura elegante === */
.final-summary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    margin: 0 auto 8px auto;
    width: auto;
    min-width: 200px;
    max-width: 340px;
}
.final-summary-btn i {
    font-size: 1.1em;
}
.final-summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}
@media (max-width: 700px) {
    .final-summary-btn {
        width: 95vw;
        min-width: 0;
        max-width: 330px;
        font-size: 1.04rem;
        padding: 14px 0;
    }
}
@media (max-width: 480px) {
    .final-summary-btn {
        width: 93vw;
        max-width: 310px;
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* === Ajuste extra para a caixa de destaque (opcional) === */
.final-summary-highlight {
    margin-left: auto;
    margin-right: auto;
}


/* === AJUSTE EXTRA DA IMAGEM NA SEÇÃO RESUMO DOS EMAGRECEDORES === */

.summary-flex {
    display: flex;
    align-items: flex-start;
    gap: 42px;
    margin-bottom: 28px;
}

.summary-content {
    flex: 2 1 0;
    min-width: 250px;
}

.summary-img {
    flex: 1 0 260px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 320px;
}

.summary-img img {
    width: 100%;
    max-width: 260px;
    border-radius: 16px;
    box-shadow: 0 4px 18px 0 rgba(0,0,0,0.07);
}

@media (max-width: 850px) {
    .summary-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .summary-content, .summary-img {
        max-width: 100%;
        text-align: center;
    }
    .summary-title, .summary-text {
        text-align: center;
    }
    .summary-img img {
        margin: 0 auto;
    }
    .summary-img {
        order: 2; /* Fica logo após o título (mobile) */
    }
    .summary-content {
        order: 1;
    }
}

@media (max-width: 850px) {
    .summary-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .summary-img {
        order: 1; /* <- Depois do título (que é 0 por padrão) */
        width: 100%;
        max-width: 320px;
        margin: 0 auto 12px auto;
        display: flex;
        justify-content: center;
    }
    .summary-content {
        order: 2;
        width: 100%;
    }
    .summary-title {
        text-align: center;
    }
    .summary-text,
    .resumo-alerta {
        text-align: center;
    }
    .summary-img img {
        width: 100%;
        max-width: 340px;
        border-radius: 16px;
    }
}
