:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #0077b6;
    --price-tag-color: #0D8203;
    --max-width: 800px;
    --spacing-lg: 60px; 
    --spacing-md: 20px;
    --spacing-xs: 10px;
    --font-main: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --title-size: clamp(2.2rem, 7vw, 3.2rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.5;
    padding: 60px 24px;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    animation: fadeUpIn 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

main {
    width: 100%;
    max-width: var(--max-width);
}

h1, h2 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    text-align: justify;
    margin-bottom: var(--spacing-md);
    color: #333;
}

.content-block {
    margin-bottom: var(--spacing-lg);
}

.img-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    margin-top: -5px;
}

.img-16-9 {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    display: block;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: var(--spacing-xs);
}

.product-item {
    display: flex;
    flex-direction: column;
}

.price-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--price-tag-color);
    color: white;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 2px 6px;
    font-weight: 400;
    z-index: 2;
}

.img-1-1 {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    display: block;
}

.product-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-desc {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: #666;
    margin-top: 2px;
    line-height: 1.2;
}

.action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
    margin-top: var(--spacing-lg);
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.action-area h2.cta-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
    text-align: center;
}

.action-area .cta-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    color: var(--text-color);
    text-align: center !important;
    display: block;
}

.btn-acceder {
    font-family: var(--font-mono);
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 0px #005f91;
    text-decoration: none;
    display: inline-block;
}

.btn-acceder:hover {
    background-color: #005f91;
    transform: translateY(2px);
    box-shadow: 0 2px 0px #004a70;
}

/* Media Queries para Responsive */
@media (max-width: 600px) {
    body { padding: 40px 20px; }
    p { text-align: left; }
    .grid-3 { grid-template-columns: 1fr; gap: 30px; }
    h1, h2 { font-size: 1.8rem; }
    .action-area { padding-top: 20px; }
    .action-area p.cta-subtitle { text-align: center !important; }
}