@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Nunito:wght@600&display=swap');
body {
    background-image: url(/images/beacpat.png)!important;
}

html {
    padding: 0;
}
button{margin:10px;}
   #test { display: block; }
    #resultados,#areas-pills { display: none; }

    #grafico,#barChart{
       width: 70vw;
    height: 100vh;
}

body {
    font-family: 'Montserrat', sans-serif; /* Default font for the body */
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    min-height: 100vh;
 
}

.title {
    font-family: 'Montserrat', sans-serif; /* Title font */
    font-weight: 700; /* SemiBold weight */
}

.subtitle {
    font-family: 'Nunito', sans-serif; /* Subtitle font */
    font-weight: 600; /* SemiBold weight */
}

.quiz-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0 20px;
}

.quiz-content {
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

h2 {
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 30px;
    color: #e0f2fe;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1em;
}

.start-button {
    background-color: #4ade80;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.3em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

.start-button:hover {
    background-color: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.6);
}

#quiz {
    
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-outline-primary {
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(59, 130, 246, 0.2);
}

#resultados {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    background-color: #3b82f6;
    color: white;
}

.cta .btn-success {
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.4);
}

/* Animation for question transitions */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}
#floating-points-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1000;
  }
  .floating-point {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(120, 224, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
    opacity: 0;
  }