/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Estilos básicos para el botón */
.btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}


/* Ajustes responsivos */
@media (max-width: 600px) {
    .modal-content {
        width: 90%;
    }

    .acc-head p {
        max-width: 80%;
    }
}


/* The Modal (background) */
.dwt-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.dwt-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.acc-container {
    /* max-width: 700px; */
    width: 100%;
}
  
.acc {
    margin-bottom: 10px;
}

.acc-head {
    background-color: #6E7148;
    padding: 15px 15px;
    position: relative;
    cursor: pointer;
}

.acc-head::before,
.acc-head::after {
    content: '';
    position: absolute;
    top: 50%;
    background-color: #fff;
    transition: all .3s;
}

.acc-head::before {
    right: 30px;
    width: 3px;
    height: 20px;
    margin-top: -10px;
}

.acc-head::after {
    right: 21px;
    width: 20px;
    height: 3px;
    margin-top: -2px;
}

.acc-head p {
    color: #fff;
    font-weight: bold;
    margin-bottom: 0px;
    font-size: clamp(18px, 2.5vw, 22px);
}

.acc-content {
    padding: 15px 10px;
    display: none;
    border: 1px solid #6E7148;
}
        
.acc-head.active::before {
    transform: rotate(90deg);
}

.btn-link {
    color: #6E7148 !important;
}

