:root {
    --primary-color: #112D27;
    --secondary-color: #F2E3C4;
    --accent-color: #A64B2A;
    --text-on-dark: #F2E3C4;
    --text-on-light: #112D27;
    --shadow: 0 4px 20px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-on-light);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 600px; /* Foco mobile/compacto */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 15px 0;
    background-color: var(--primary-color);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo {
    color: var(--secondary-color);
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: bold;
}

/* Hero Section - Super Chamativa */
.hero {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
    padding: 40px 0 60px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary-color);
    padding: 0 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

/* Floating Button for Mobile */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-large {
    display: block;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(166, 75, 42, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Benefits Section */
.section {
    padding: 50px 0;
}

.bg-white {
    background-color: #fff;
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(17, 45, 39, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.benefit-icon {
    font-size: 1.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Category Pills */
.categories-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-pill {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.category-pill span:last-child {
    font-size: 0.8rem;
    opacity: 0.7;
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Featured Recipe Card */
.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card-body {
    padding: 20px;
}

.recipe-tag {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Author Section */
.author-box {
    text-align: center;
    padding: 30px 20px;
}

.author-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--primary-color);
}

/* Footer and Social */
footer {
    padding: 40px 20px 120px; /* Espaço extra para o botão fixo */
    background: var(--primary-color);
    color: rgba(242, 227, 196, 0.6);
    text-align: center;
    font-size: 0.8rem;
}

.guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--text-on-light);
    font-weight: 600;
}

.price-tag {
    text-align: center;
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 900;
    display: block;
    line-height: 1;
}

/* Desktop override - maintain readability but keep focus */
@media (min-width: 601px) {
    .container {
        padding: 0 40px;
    }
    .hero-image {
        height: 400px;
    }
    .sticky-cta {
        position: static;
        margin-top: 30px;
    }
}
