/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container Principal */
.container {
    background: #fff;
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    padding: 40px 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Tipografia */
h1 {
    font-size: 2.0rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 1.2rem;
    color: #555;
    font-weight: 400;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 25px;
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4a4a4a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Imagem do Produto */
.product-image-container {
    margin: 20px auto 40px;
    max-width: 350px;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Opinião do Especialista */
.expert-opinion {
    background-color: #f9fbfd;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    border-left: 5px solid #3498db;
}

.expert-opinion .author {
    font-weight: bold;
    color: #2c3e50;
    margin-top: 15px;
    display: block;
}

/* Seção de Ingredientes - REMOVIDA */
/* Depoimentos - REMOVIDOS */

/* Call to Action (CTA) */
.cta-section {
    margin: 40px 0;
}

.scarcity-text {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    /* Verde cofiável */
    color: white;
    padding: 20px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #219150;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #999;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    margin: 0 10px;
}

/* Responsividade */
@media (min-width: 600px) {
    h1 {
        font-size: 2.4rem;
    }
}

/* Otimização Específica para Mobile */
@media (max-width: 599px) {
    body {
        padding: 0;
    }

    .container {
        padding: 30px 15px;
        margin-top: 0;
        margin-bottom: 0;
        border-radius: 0;
        box-shadow: none;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .cta-button {
        width: 100%;
        padding: 18px 20px;
        font-size: 1.1rem;
    }

    .scarcity-text {
        font-size: 0.95rem;
    }

    .expert-opinion {
        padding: 20px;
    }

    .product-image-container {
        max-width: 250px;
    }
}