/* 
    Barbería Profesional - Design System 
    Color Palette:
    - Primary: #0a0b0d (Rich Black)
    - Secondary: #1c1e22 (Charcoal)
    - Accent: linear-gradient(135deg, #d4af37 0%, #f9e89d 100%) (Golden Bronze)
    - Text: #ffffff, #a0a0a0 (Secondary text)
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;800&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #0a0b0d;
    --secondary: #1c1e22;
    --accent: #d4af37;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #f9e89d 100%);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --success: #27ae60;
    --danger: #e74c3c;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .title-font {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

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

/* --- Reusable Components --- */

.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: var(--glass);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.badge {
    background: var(--accent-gradient);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

/* --- Navigation --- */
nav {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

/* --- Hero Section --- */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 25px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(180deg, #fff, #888);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.hero-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: 1;
    mask-image: linear-gradient(to left, black 50%, transparent 100%);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    filter: grayscale(0.3) contrast(1.1);
}

/* --- Features / Modules --- */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--secondary);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* --- Bonus Section --- */
.bonus-section {
    background: var(--accent-gradient);
    color: #000;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.bonus-content {
    flex: 1;
}

.bonus-content h2 {
    color: #000;
    font-size: 2.5rem;
}

.bonus-image {
    flex: 0 0 40%;
}

.bonus-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 #000;
}

/* --- Testimonials --- */
.testimonial-card {
    background: var(--glass);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card img {
    width: 100%;
    height: 400px; /* Fixed height for uniformity */
    object-fit: contain; /* Ensures the whole screenshot is visible */
    border-radius: 8px;
    border: 2px solid var(--accent);
    background: #000;
}

/* --- Pricing --- */
.pricing-box {
    background: var(--secondary);
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid var(--accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-box .old-price {
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 1.5rem;
}

.pricing-box .new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    margin: 10px 0 30px;
    font-family: 'Bebas Neue', cursive;
}

/* --- Notifications --- */
.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--secondary);
    border-left: 4px solid var(--accent);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification.show {
    transform: translateX(0);
}

.notification img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* --- Comparison Table --- */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: var(--glass);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table th {
    background: rgba(0,0,0,0.2);
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.comparison-table .highlight {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    font-weight: 800;
    text-align: center;
}

.comparison-table td:not(.highlight) {
    color: var(--text-dim);
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-image {
        display: none;
    }
    .bonus-section {
        flex-direction: column;
        padding: 40px 20px;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}
