@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: 'Raleway';
    color: #606060;
}

.orange {
    color: #ee7202;
}

.green {
    color: #008136 !important;
}

.bg-orange {
    background: #ee7202;
}

.bg-grey {
    background: #666;
    ;
}

.bg-light-grey {
    background: #f1f1f1;
}

.bg-green {
    background: #008136;
}

.border-green-6 {
    border: 6px solid #008136;
}


.inner-shadow {
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.fs-08 {
    font-size: .8em;
}

.ls-1 {
    letter-spacing: 1px;
}

.text-green {
    color: #008136;
}

.link-green {
    color: #008136 !important;
}

.brand {
    width: 130px;
}

.navbar .nav-link {
    transition: all .2s ease;
}

.navbar .nav-link.link-green:hover {
    color: #ee7202 !important;
}


.navbar .nav-link.active,
.navbar .show>.nav-link {
    background-color: transparent !important;
    position: relative;
}

.navbar .nav-link.active::after,
.navbar .show>.nav-link::after {

    content: '';
    position: absolute;
    border-bottom: 3px solid #ee7202;
    ;
    width: 25%;
    bottom: 0px;
    left: 0;
    margin-left: 0;
}



.carousel-indicators {
    left: auto;
    margin-right: 40px;
    margin-left: 40px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #008136;
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 2;
    width: 60px;
    height: 60px:;
}


/* STEPS */
.steps {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.step {
    text-align: center;
    position: relative;
    opacity: 1;
}



.step-number {
    width: 40px;
    height: 40px;
    border: 2px solid #FF6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #fff;
    margin: 0 auto;
    margin-bottom: 8px;
}

.step.active .step-number {
    border: none;
    background: #008136 !important;
    color: #fff;
}


.step-label {
    font-size: 14px;
}

/* LINE BETWEEN STEPS */
.step::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ddd;
    position: absolute;
    top: 20px;
    left: calc(100% + 20px);
}

.step:last-child::after {
    display: none;
}

/* TRAMITE CARDS */
.tramite-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

.tramite-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.tramite-card .icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.card {
    transition: all 0.2s ease;
    cursor: pointer;
}

.card:hover {
    cursor: pointer;
    background-color: #ccc;

}


footer {
    border-bottom: 10px solid #FF6600;
}



.accordion-button:not(.collapsed) {
    background-color: rgba(200, 200, 200, 0.3);
}



/** X-Small devices (portrait phones, less than 576px)
/** No media query for `xs` since this is the default in Bootstrap

/** Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {}

/** Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {}

/** Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

    .navbar .nav-link.active::after,
    .navbar .show>.nav-link::after {

        content: '';
        position: absolute;
        border-bottom: 4px solid #ee7202;
        width: 50%;
        bottom: 0px;
        left: 50%;
        margin-left: -25%;
    }
}

/** X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}

/** XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {}