body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    background: #000000;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    background-color: #000000 !important;
    padding: 1rem 0;
    border-bottom: 2px solid #ff9e00;
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-link {
    color: white !important;
    font-weight: 300;
}

footer {
    background-color: #000000;
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid #ff9e00;
}

footer p {
    margin: 0;
    color: white;
    font-weight: 300;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

footer a:hover {
    color: #ff9e00;
}

.social-icons {
    margin: 1rem 0;
}

.social-icons a {
    color: #ff9e00;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: white;
}

footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

footer ul li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

footer .fas {
    color: #ff9e00;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #333333;
    border-radius: 10px;
}

.product-row .text-content {
    flex: 1;
}

.product-row .image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-row img {
    max-width: 400px;
    height: auto;
    transition: transform 0.3s ease;
}

.product-row img:hover {
    transform: scale(1.02);
}

.product-row.reverse {
    flex-direction: row-reverse;
}

header {
    background-color: #000000 !important;
    border-bottom: 2px solid #ff9e00;
}

.btn-primary, 
.btn-light,
.cta-btn,
.btn {
    background-color: #ff9e00 !important;
    border: none !important;
    color: #000000 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 700 !important;
}

.btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-outline-light {
    background-color: transparent !important;
    border: 1px solid white !important;
    color: white !important;
}

.btn-outline-light:hover {
    background-color: white !important;
    color: black !important;
}

.card-title {
    font-weight: 300;
    margin-bottom: 1rem;
}

.card-title strong {
    font-weight: 900;
}

.card-text {
    font-weight: 300;
    line-height: 1.8;
}

.card-text strong {
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
    font-weight: 900;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .product-row {
        flex-direction: column;
        text-align: center;
    }
    
    .product-row img {
        max-width: 300px;
    }
    
    .hero-row {
        flex-direction: column;
    }
    
    .hero-image-container {
        margin-bottom: 2rem;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
}

/* Eliminar estilos no utilizados */
.benefits-grid,
.benefit-card,
.journey-timeline,
.timeline-item,
.timeline-number,
.scarcity-section,
.countdown,
.countdown-item {
    display: none;
}

.btn-custom {
    background-color: #ff9e00 !important;
    border: none !important;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 700 !important;
}

.btn-custom:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-custom i {
    color: black !important;
}

@media (max-width: 991px) {
    .product-row {
        padding: 1rem;
        gap: 1rem;
    }

    .card-text {
        padding: 10px !important;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    footer ul {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .btn-custom {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}