/* style.css - La Llave de tu Pyme (Dark & Orange Theme) */

body {
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
    -webkit-font-smoothing: antialiased;
    background-color: #0b0c10;
}

/* Typography refinements */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Custom Utilities */
.tracking-wide {
    letter-spacing: 0.05em;
}

/* Orange Gradient Theme */
.text-primary {
    color: #ff6b00 !important;
}

.bg-primary {
    background-color: #ff6b00 !important;
}

.bg-primary-subtle {
    background-color: rgba(255, 107, 0, 0.1) !important;
}

.btn-primary {
    background-color: #ff6b00;
    border-color: #ff6b00;
    color: #fff;
}
.btn-primary:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

.border-primary {
    border-color: #ff6b00 !important;
}

.section-gradient {
    /* Linear gradient dark-orange */
    background: linear-gradient(135deg, #1f1107 0%, #0b0c10 100%);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.custom-btn-glow {
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.custom-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 107, 0, 0.5);
}

.custom-mockup-glow {
    box-shadow: 0 25px 50px -12px rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Feature Cards Hover - Dark Mode */
.feature-card {
    transition: all 0.3s ease;
    background-color: #16181c !important;
    border-color: #2c2f36 !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b00 !important;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.1) !important;
}

/* Proceso Timeline UI adjustment - Dark Mode */
.process-card {
    transition: all 0.3s ease;
    background-color: #16181c !important;
    border-color: #2c2f36 !important;
}
.process-card:hover {
    border-color: #ff6b00 !important;
}
.process-card h5 {
    color: #e0e0e0 !important;
}

/* Pricing Card Glow - Dark Mode */
.pricing-card {
    transition: transform 0.3s ease;
    background-color: #16181c !important;
    border-color: #ff6b00 !important;
}
.pricing-card:hover {
    transform: scale(1.02);
}
.pricing-card .text-dark {
    color: #ffffff !important;
}
.pricing-card .text-secondary {
    color: #a0a0a0 !important;
}

/* Accordion overrides - Dark Mode */
.accordion-item {
    background-color: transparent;
    border-color: rgba(255,255,255,0.1);
}
.accordion-button {
    background-color: transparent;
    color: #e0e0e0;
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #ff6b00;
    box-shadow: none;
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-button:not(.collapsed)::after {
    filter: invert(50%) sepia(80%) saturate(2000%) hue-rotate(1deg);
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255,255,255,.125);
}

/* Nav Link Hover - Dark Mode */
.navbar {
    background-color: #0b0c10 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-brand {
    color: #ffffff !important;
}
.navbar-light .navbar-nav .nav-link {
    color: #a0a0a0;
    font-weight: 500;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #ff6b00;
}
.navbar-toggler {
    border-color: rgba(255,255,255,0.1);
}
.navbar-toggler-icon {
    filter: invert(1);
}

/* Overrides para Bootstrap en modo oscuro */
.bg-white {
    background-color: #0b0c10 !important;
}
.bg-light {
    background-color: #16181c !important;
}
.text-dark {
    color: #ffffff !important;
}

/* Custom Utils object fit */
.object-fit-cover {
    object-fit: cover;
}
.text-secondary {
    color: #a0a0a0 !important;
}
.text-muted {
    color: #7a7a7a !important;
}
.border {
    border-color: #2c2f36 !important;
}
.card {
    background-color: #16181c;
}

/* Mockups genéricos placeholders nanobanana */
.mockup-placeholder {
    display: block;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    padding: 2rem;
    background: linear-gradient(145deg, #1f1f1f, #16181c);
    border: 1px solid #2c2f36;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* Elementos futuristas */
.futuristic-border {
    position: relative;
}
.futuristic-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inset;
    border: 1px solid rgba(255, 107, 0, 0.3);
    pointer-events: none;
    z-index: 10;
}

/* Keyframes animaciones */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes gradientMovement {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-slow {
    animation: float 8s ease-in-out infinite reverse;
}

.cta-animated-bg {
    background: linear-gradient(-45deg, #1f1107, #0b0c10, #3a1902, #0b0c10);
    background-size: 400% 400%;
    animation: gradientMovement 15s ease infinite;
}
