:root {
    --bg-color: #000000;
    --bg-secondary: #050505;
    --primary: #ffffff;
    /* Sharp White */
    --accent: #ff0033;
    /* Aggressive Red */
    --text-main: #ffffff;
    --text-muted: #888888;
    --card-bg: #0a0a0a;
    --glass-border: rgba(255, 255, 255, 0.15);
    --gradient-main: linear-gradient(135deg, #000000, #111111);
    --gradient-gold: #ffffff;
    /* Minimalist white for text gradients */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-gradient {
    color: #ffffff;
    /* Removed gradient for flat, sharp look */
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 0px;
    /* Sharp corners */
    font-weight: 800;
    /* Bolder */
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--accent);
    box-shadow: none;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
    transform: translateY(-2px);
}

.btn-primary::before {
    display: none;
}

/*... skipping Hero ...*/

/* Features/Benefits */
.features {
    padding: 100px 0;
    background: #000;
    border-top: 1px solid #111;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}



.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 0px;
    /* Sharp corners */
    transition: all 0.2s ease;
    backdrop-filter: none;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #111 0%, #000 70%);
    /* Subtle depth */
}

/* Removed soft blobs for minimalism */
.hero::before,
.hero::after {
    display: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #000;
    border: 1px solid var(--accent);
    border-radius: 0px;
    /* Sharp edges */
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: block;
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero h1 .impact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    /* Sharp text shadow */
    text-shadow: 2px 2px 0px #333;
    line-height: 1;
    margin-bottom: 0;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Features/Benefits */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-muted);
}

/* Showcase */
.showcase {
    padding: 100px 0;
    background: #000;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.showcase-item {
    aspect-ratio: 1;
    background: #111 !important;
    /* Force black over inline styles if possible */
    border-radius: 0px;
    /* Sharp */
    overflow: hidden;
    position: relative;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.showcase-item:hover {
    border-color: var(--accent);
}

.showcase-item i {
    color: var(--accent) !important;
}

/* Pricing/Offer */
.offer {
    padding: 100px 0;
    background: #000;
    /* Pure black */
    text-align: center;
    border-top: 1px solid #111;
}

.price-card {
    background: #050505;
    border: 1px solid #222;
    border-radius: 0px;
    /* Sharp */
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    border-color: var(--accent);
}

.price-card::before {
    content: 'OFERTA LIMITADA';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: #fff;
    /* White text on red bg */
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.price-display {
    margin: 2rem 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.25rem;
}

.new-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    padding: 0 2rem;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.features-list li .check {
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 20px);
    }
}

/* Bonus Section - Aggrresive Folder Style */
.bonuses {
    padding: 100px 0;
    background: #000;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.folder-card {
    position: relative;
    margin-top: 20px;
}

.folder-tab {
    width: 140px;
    height: 30px;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 5px 0 0;
    margin-left: 0px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    text-transform: uppercase;
}

.folder-content {
    background: #0a0a0a;
    border: 1px solid var(--accent);
    border-radius: 0 5px 5px 5px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.folder-card:hover .folder-content {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 10px 10px 0px rgba(255, 0, 51, 0.2);
}

.folder-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.folder-card:hover img {
    filter: grayscale(0%);
}

.folder-info {
    padding: 1.5rem;
    border-top: 1px solid #222;
}

.folder-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.folder-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 span {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}


/* Portrait Gallery */
.portrait-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 3rem auto 2rem;
}

.portrait-gallery img {
    width: calc(50% - 6px);
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
    object-fit: cover;
    aspect-ratio: 210/297;
    /* A4 Portrait to match Carousel */
    transition: transform 0.3s ease;
}

.portrait-gallery img:hover {
    transform: scale(1.05);
    border-color: var(--accent);
}

/* Carousel Styles */
.carousel-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: 100vw;
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 0.5vw;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    width: 32vw;
    aspect-ratio: 210/297;
    /* A4 Portrait */
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .carousel-track img {
        height: 200px;
    }
}