body{
    background-color: #1c1c1c;   
    color: #fff;
}

header{
    margin-top:40px;
    background-color: #7f0c8a;
}

footer{
    background-color: #7f0c8a;
}

.texto-primario{
    color: #7f0c8a;
}
.cta {
    background-color: #7f0c8a;
    color: white;
    padding: 50px 0;
    border-radius: 10px;
    margin: 0px 4% 0px 4%;

    box-shadow: 0px 5px 3px 1px rgba(0, 0, 0, 0.8);
}

.cta h2 {
    font-size: 2.5em;
}

.cta p {
    font-size: 1.0em;
}

.features h3 {
    color: #7f0c8a;
}

.testimonials blockquote {
    font-size: 1.2em;
    color: #555;
    border-left: 5px solid #7f0c8a;
    padding-left: 10px;
}

.accordion-button {
    font-size: 1.2rem;
    background-color: #f8f9fa;
    border: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.accordion-button:hover {
    background-color: #e0e7ff;
}

.accordion-button i {
    font-size: 1.5rem;
}

.accordion-body {
    font-size: 1.1rem;
    color: #555;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fundo{
    background-color:#141414;
}

.fundo2 {
    background: linear-gradient(135deg, #f0f8ff 0%, #d1e9f5 100%);
}


.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.list-group-item {
    font-size: 1.1rem;
    border: none;
}


/* Custom hover effect for cards */
.hover-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


