/* Estilos generales */
body {
    background-color: #0D1A2F;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background-color: #182C49;
    padding: 1rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
}
.navbar .btn-secondary {
    background-color: #2AB561;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.navbar .btn-secondary:hover {
    background-color: #3F86E8;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #2AB561, #3F86E8);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    border-bottom: 5px solid #182C49;
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.hero button {
    margin: 10px;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.hero button.btn-primary {
    background-color: #3F86E8;
}
.hero button.btn-primary:hover {
    background-color: #2AB561;
    transform: translateY(-3px);
}
.hero button.btn-secondary {
    background-color: #2AB561;
}
.hero button.btn-secondary:hover {
    background-color: #3F86E8;
    transform: translateY(-3px);
}

/* Feature Cards */
.feature-card {
    background: #182C49;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}
.feature-card h3 {
    color: #2AB561;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 1rem;
    color: #FFFFFF;
}

/* Preguntas Frecuentes (FAQ) */
.accordion {
    background-color: transparent;
    border: none;
}

.accordion-item {
    background-color: #0D1A2F;
    border: 1px solid #3F86E8;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.accordion-header {
    background-color: #182C49;
}

.accordion-button {
    background-color: #182C49;
    color: #FFFFFF;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #3F86E8;
    color: #FFFFFF;
    transform: scale(1.02);
}

.accordion-button i {
    font-size: 1.2rem;
    color: #2AB561;
}

.accordion-button:not(.collapsed) i {
    color: #FFFFFF;
}

.accordion-body {
    background-color: #182C49;
    color: #FFFFFF;
    font-size: 1rem;
    padding: 20px;
    line-height: 1.5;
    border-top: 2px solid #3F86E8;
    border-radius: 0 0 10px 10px;
}

/* Hover Effects */
.accordion-button:hover {
    background-color: #3F86E8;
    color: #FFFFFF;
}

.accordion-body p {
    margin-bottom: 0;
}

/* Sombra adicional en hover */
.accordion-item:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}


/* Balance Section */
#balanceSection {
    text-align: center;
}
#balanceSection input {
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #3F86E8;
    outline: none;
    transition: border-color 0.3s ease;
}
#balanceSection input:focus {
    border-color: #2AB561;
}
#balanceSection button {
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
#balanceSection button.btn-primary {
    background-color: #3F86E8;
}
#balanceSection button.btn-primary:hover {
    background-color: #2AB561;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #182C49;
    color: white;
    padding: 20px;
    text-align: center;
    border-top: 5px solid #3F86E8;
}
footer a {
    color: #2AB561;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #3F86E8;
}
