/* Tipologias Section Styles */
.tipologias-section {
    background-color: #FAFAFA;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

/* Background Abstract Decor */
.tipologias-section::before {
    content: "";
    position: absolute;
    right: -10rem;
    top: -5rem;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,0,0,0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.title-line {
    flex-grow: 1;
    height: 2px;
    background-color: #E3E992;
    margin-left: 1rem;
    position: relative;
    top: 5px;
}

.bottom-line-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.bottom-line-container::before,
.bottom-line-container::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background-color: #E3E992;
}

.bottom-line-container::before {
    margin-right: 1.5rem;
}

.bottom-line-container::after {
    margin-left: 1.5rem;
}

.typo-card {
    background-color: #163923;
    border-radius: 1rem;
    padding: 1.5rem 2rem 1.5rem 3rem;
    position: relative;
    color: white;
    text-align: center;
    box-shadow: 0 10px 25px rgba(22, 57, 35, 0.15);
    transition: transform 0.3s ease;
}

.typo-card:hover {
    transform: translateY(-5px);
}

.typo-badge {
    background-color: #E3E992;
    color: #163923;
    border-radius: 0.5rem;
    padding: 0.25rem 1.5rem;
    display: inline-block;
    font-weight: 900;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.typo-card-icon {
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #E3E992;
    background-color: #163923;
    border-radius: 50%;
    padding: 0.2rem;
    /* Soft shadow to separate from background if needed */
}@media (max-width: 768px) {
    .tipologias-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .typo-card {
        padding: 1.75rem 1.25rem 1.75rem 4rem; /* Más espacio para el icono */
        text-align: left;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .typo-card-icon {
        left: 0.75rem; /* Posiciona el icono más centrado en el padding */
        width: 2.5rem;
        height: 2.5rem;
    }

    .typo-badge {
        font-size: 1.15rem;
        padding: 0.25rem 0.75rem;
    }

    .custom-bullets {
        padding-left: 0;
        margin-top: 2rem;
    }

    .custom-bullets li {
        font-size: 1.1rem;
        padding-left: 2rem !important;
    }
}
