:root {
    --primary-color: #8b0101;
    --secondary-color: #2C3E50;
    --accent-color: #ca9d31;
    --gradient: linear-gradient(135deg, #e0c181, #fbeccf);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-section {
    background: var(--gradient);
    padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: black;
    margin-bottom: 1.5rem;
}

.hero-text p {
    color: rgba(0, 0, 0, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.app-badge {
    height: 40px;
    margin: 10px;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: scale(1.05);
}

.phone-mockup {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.propuesta-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.propuesta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.propuesta-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.screenshot {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
}

.cta-section {
    background: var(--primary-color);
    padding: 5rem 0;
    position: relative;
}

.download-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
    background: white;
    color: var(--primary-color);
}

.navbar {
    background: #8b0101;
    backdrop-filter: blur(10px);
}