.acd-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.acd-header {
    text-align: center;
    margin-bottom: 40px;
}

.acd-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.acd-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #fe90ab, #c03e65);
    border-radius: 2px;
}

.acd-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.acd-accordion {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.acd-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.acd-item:last-child {
    border-bottom: none;
}

.acd-header-item {
    padding: 22px 25px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.acd-header-item:hover {
    background-color: #f8fafc;
}

.acd-header-item.acd-active {
    background: linear-gradient(135deg, #fe90ab 0%, #c03e65 100%);
    color: white;
}

.acd-title-item {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.acd-title-item:before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    min-width: 7px;
    min-height: 7px;
    border-radius: 50%;
    background-color: #fc8da9;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.acd-header-item.acd-active .acd-title-item:before {
    background-color: white;
}

.acd-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    font-weight: bold;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.1);
}

.acd-header-item.acd-active .acd-icon {
    transform: rotate(45deg);
    background-color: rgba(255, 255, 255, 0.2);
}

.acd-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #f8fafc;
}

.acd-content-inner {
    padding: 0 25px;
}

.acd-content.acd-active {
    max-height: 3000px;
}

.acd-info {
    padding: 25px 0;
}

.acd-info-title {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.acd-info-title:before {
    content: '•';
    color: #fc8da9;
    font-size: 1.5rem;
    margin-right: 10px;
}

.acd-info p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.acd-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #fc8da9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.acd-details-title {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1rem;
}

.acd-details-list {
    list-style-type: none;
}

.acd-details-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e9ecef;
    display: flex;
    align-items: center;
}

.acd-details-list li:last-child {
    border-bottom: none;
}

.acd-details-list li:before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.acd-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .acd-container {
        padding: 10px;
    }

    .acd-title {
        font-size: 2rem;
    }

    .acd-subtitle {
        font-size: 1rem;
    }

    .acd-header-item {
        padding: 18px 20px;
    }

    .acd-title-item {
        font-size: 1.1rem;
    }

    .acd-content-inner {
        padding: 0 20px;
    }

    .acd-info {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .acd-header-item {
        padding: 15px;
    }

    .acd-title-item {
        font-size: 1rem;
    }

    .acd-title-item:before {
        width: 10px;
        height: 10px;
        margin-right: 10px;
    }

    .acd-info {
        padding: 15px 0;
    }

    .acd-details {
        padding: 15px;
    }
}