* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 40px 0;
    background: #d4841c;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 1.2em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: white;
    color: #d4841c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

h1 {
    font-size: 3.5em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.4em;
    color: #f0f8ff;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.bg-software {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../recursos/software.png") no-repeat center center/cover;
    filter: blur(3px) opacity(75%);
    z-index: -1;
}

.container {
    margin: 0 auto;
    padding: 20px;
}

.software-overview {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.software-overview h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.software-overview p {
    color: #555;
    font-size: 1.2em;
    text-align: center;
    margin: 0 auto 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: linear-gradient(135deg, #d4841c 0%, #9F805BFF 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out calc(0.5s + var(--delay, 0s)) both;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before {
    animation: shine 0.6s ease-out;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); opacity: 1; }
    100% { transform: rotate(45deg) translateX(100%); opacity: 0; }
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0.95;
}

.capabilities-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.capabilities-section h2 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.capability-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #2c3e50;
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.capability-item i {
    font-size: 1.5em;
    margin-right: 15px;
    opacity: 0.9;
}

.demo-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.9s both;
}

.demo-section h2 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.demo-section p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.demo-button {
    background: linear-gradient(135deg, #d4841c 0%, #9F805BFF 100%);
    color: white;
    padding: 15px 40px;
    font-size: 1.2em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

.demo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
}

.footer h3 {
    color: #d4841c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer .copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #c98126;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 10px;
    }

    .software-overview, .capabilities-section, .demo-section {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .capabilities-list {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .cta-button, .demo-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}