/* Preguntas Frecuentes */
.questions {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a7268 100%);
}
.container-faq{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0rem;
}

.questions__padding {
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px rgba(255, 255, 255, 0.1);
}

.questions__padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    transform: translateZ(-1px);
    pointer-events: none;
}

.questions__padding:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 20px 45px rgba(0, 0, 0, 0.2),
        inset 0 1px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.questions::before,
.questions::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.questions::before {
    top: -200px;
    right: -200px;
}

.questions::after {
    bottom: -200px;
    left: -200px;
}

.preguntas-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.preguntas-header h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
    margin: 1rem 0;
    font-weight: 600;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge i {
    margin-right: 0.5rem;
}

.title-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.accent-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
}

.accent-line {
    width: 60px;
    height: 2px;
    background: #4CAF50;
}

.questions__container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.questions__item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.questions__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 4px;
}

.questions__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.questions__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.12);
}

.questions__answer {
    padding: 1.5rem;
}

.questions__header {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    padding: 0.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.questions__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.questions__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;

    transition: all 0.3s ease;
}

.questions__icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.questions__item:hover .questions__icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.questions__item, .questions__header, .questions__item-title, .questions__arrow, .questions__description, .questions__content {
    transition: .3s;
}

.questions__description {
    color: #2E7D32;
    font-size: 0.95rem;
    line-height: 1.6;
}

.questions__show {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
    color: white;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 1rem;
    opacity: 0.8;
}

.questions__arrow--rotate {
    transform: rotate(180deg);
    
    color: #ffffff;
}

@media (max-width: 768px) {
    .questions {
        padding: 4rem 0;
    }

    .questions__title {
        font-size: 1rem;
    }

    .questions__answer {
        padding: 1.25rem;
    }

    .questions__show {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .questions__container {
        padding: 0 1rem;
    }

    .questions__title {
        font-size: 0.95rem;
    }
}
@media (min-width: 325px) and (max-width:375px){
    .questions__title {
        font-size: 1.1rem;
    }
}