/* ============================================
   CENTRO DE AYUDA - ESTILOS
   ============================================ */

/* Hero Section */
.ayuda-hero {
    background: url('../assets/images/banners/pregunta-expertos.png') center center / cover no-repeat;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ayuda-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.ayuda-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ayuda-hero-title {
    margin: 0 0 20px 0;
    line-height: 0.6;
}

.ayuda-hero-title-white {
    display: block;
    font-family: 'Helvetica Neue LT Std 97 Black Condensed', sans-serif;
    font-weight: 900;
    font-size: 60px;
    color: #FFFFFF;
    letter-spacing: -2px;
    line-height: 0.6;
}

.ayuda-hero-title-green {
    display: block;
    font-family: 'Helvetica Neue LT Std 97 Black Condensed', sans-serif;
    font-weight: 900;
    font-size: 60px;
    color: #FFFFFF;
    letter-spacing: -2px;
    line-height: 0.6;
}

.ayuda-hero-subtitle {
    font-family: 'Futura Std', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Search Section */
.ayuda-search-section {
    background: #f8f8f8;
    padding: 60px 20px;
}

.ayuda-search-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ayuda-search-title {
    font-family: 'Helvetica LT Std', sans-serif;
    font-weight: bold;
    font-size: 28px;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

.ayuda-search-box {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.ayuda-search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Futura Std', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ayuda-search-input:focus {
    outline: none;
    border-color: #9FC11F;
    box-shadow: 0 0 0 3px rgba(159, 193, 31, 0.1);
}

.ayuda-search-btn {
    padding: 15px 30px;
    background: #9FC11F;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ayuda-search-btn:hover {
    background: #8ab01a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(159, 193, 31, 0.3);
}

.ayuda-search-btn svg {
    fill: #ffffff;
}

/* Sections Grid */
.ayuda-sections {
    background: #ffffff;
    padding: 80px 20px;
}

.ayuda-sections-container {
    max-width: 1140px;
    margin: 0 auto;
}

.ayuda-sections-title {
    text-align: center;
    margin: 0 0 60px 0;
    font-family: 'Helvetica Neue LT Std 97 Black Condensed', sans-serif;
    font-weight: 900;
    font-size: 50px;
    line-height: 1.2;
}

.ayuda-sections-title .title-dark {
    color: #1a1a1a;
}

.ayuda-sections-title .title-green {
    color: #9FC11F;
}

.ayuda-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Ayuda Cards */
.ayuda-card {
    background: #ffffff;
    border: 3px solid #f0f0f0;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ayuda-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #9FC11F 0%, #8ab01a 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ayuda-card:hover::before {
    transform: scaleX(1);
}

.ayuda-card:hover {
    border-color: #9FC11F;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(159, 193, 31, 0.25);
}

.ayuda-card-icon {
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.ayuda-card:hover .ayuda-card-icon {
    transform: scale(1.1);
}

.ayuda-card-title {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.ayuda-card-description {
    font-family: 'Futura Std', sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 25px 0;
    flex: 1;
}

.ayuda-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(159, 193, 31, 0.15) 0%, rgba(159, 193, 31, 0.08) 100%);
    padding: 10px 18px;
    border-radius: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(159, 193, 31, 0.3);
}

.ayuda-card-badge span {
    font-family: 'Futura Std', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #7da518;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ayuda-card-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #9FC11F 0%, #8ab01a 100%);
    color: #ffffff;
    font-family: 'Futura Std', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(159, 193, 31, 0.3);
}

.ayuda-card:hover .ayuda-card-btn {
    background: linear-gradient(135deg, #8ab01a 0%, #7da518 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(159, 193, 31, 0.4);
}

/* Contact Section */
.ayuda-contact {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 80px 20px;
    text-align: center;
}

.ayuda-contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.ayuda-contact-title {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.ayuda-contact-text {
    font-family: 'Futura Std', sans-serif;
    font-size: 18px;
    color: #666666;
    margin: 0 0 40px 0;
}

.ayuda-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ayuda-contact-btn {
    padding: 15px 40px;
    font-family: 'Futura Std', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.ayuda-contact-btn-primary {
    background: #9FC11F;
    color: #ffffff;
}

.ayuda-contact-btn-primary:hover {
    background: #8ab01a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(159, 193, 31, 0.4);
}

.ayuda-contact-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.ayuda-contact-btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ayuda-hero {
        padding: 100px 20px 60px;
    }
    
    .ayuda-hero-title-white,
    .ayuda-hero-title-green {
        font-size: 45px;
    }
    
    .ayuda-hero-subtitle {
        font-size: 16px;
    }
    
    .ayuda-search-section {
        padding: 40px 20px;
    }
    
    .ayuda-search-title {
        font-size: 24px;
    }
    
    .ayuda-search-box {
        flex-direction: column;
    }
    
    .ayuda-search-btn {
        width: 100%;
    }
    
    .ayuda-sections {
        padding: 60px 20px;
    }
    
    .ayuda-sections-title {
        font-size: 35px;
        margin-bottom: 40px;
    }
    
    .ayuda-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ayuda-contact {
        padding: 60px 20px;
    }
    
    .ayuda-contact-title {
        font-size: 28px;
    }
    
    .ayuda-contact-buttons {
        flex-direction: column;
    }
    
    .ayuda-contact-btn {
        width: 100%;
    }
}

/* Video Player Styles */
.ayuda-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ayuda-video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.ayuda-video-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    padding: 80px 40px;
    text-align: center;
    border-radius: 15px;
    border: 2px dashed #cccccc;
}

.ayuda-video-placeholder-icon {
    margin-bottom: 20px;
}

.ayuda-video-placeholder-text {
    font-family: 'Futura Std', sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0;
}

/* Content Sections */
.ayuda-content-section {
    background: #ffffff;
    padding: 60px 20px;
}

.ayuda-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.ayuda-content-title {
    font-family: 'Helvetica Neue LT Std 97 Black Condensed', sans-serif;
    font-weight: 900;
    font-size: 45px;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.ayuda-content-title .title-green {
    color: #9FC11F;
}

.ayuda-content-intro {
    font-family: 'Futura Std', sans-serif;
    font-size: 18px;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 40px 0;
    padding: 30px;
    background: #f8f8f8;
    border-left: 4px solid #9FC11F;
    border-radius: 10px;
}

/* Acordeones */
.ayuda-acordeon {
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ayuda-acordeon.active {
    border-color: #9FC11F;
}

.ayuda-acordeon-header {
    width: 100%;
    background: #f8f8f8;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ayuda-acordeon-header:hover {
    background: #f0f0f0;
}

.ayuda-acordeon.active .ayuda-acordeon-header {
    background: rgba(159, 193, 31, 0.1);
}

.ayuda-acordeon-header h2 {
    margin: 0;
    font-family: 'Helvetica Neue LT Std 97 Black Condensed', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: #1a1a1a;
    text-align: left;
}

.ayuda-acordeon-header h2::before {
    display: none;
}

.ayuda-acordeon-icon {
    font-size: 28px;
    font-weight: bold;
    color: #9FC11F;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.ayuda-acordeon.active .ayuda-acordeon-icon {
    transform: rotate(45deg);
}

.ayuda-acordeon-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 25px;
}

.ayuda-acordeon.active .ayuda-acordeon-content {
    max-height: 5000px;
    padding: 25px;
}

.ayuda-section-block {
    margin-bottom: 50px;
}

.ayuda-section-block h2 {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ayuda-section-block h2::before {
    content: '';
    width: 6px;
    height: 35px;
    background: #9FC11F;
    border-radius: 3px;
}

.ayuda-section-block h3 {
    font-family: 'Helvetica Neue LT Std', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #2d5016;
    margin: 30px 0 15px 0;
}

.ayuda-section-block p {
    font-family: 'Futura Std', sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.ayuda-section-block ul,
.ayuda-section-block ol {
    font-family: 'Futura Std', sans-serif;
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 0 0 20px 0;
    padding-left: 30px;
}

.ayuda-section-block li {
    margin-bottom: 12px;
    list-style: disc;
}

.ayuda-section-block ol li {
    list-style: decimal;
}

.ayuda-tip-box {
    background: rgba(159, 193, 31, 0.1);
    border-left: 4px solid #9FC11F;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.ayuda-tip-box-title {
    font-family: 'Futura Std', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2d5016;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ayuda-tip-box-title::before {
    content: '💡';
    font-size: 20px;
}

.ayuda-tip-box p {
    margin: 0;
    font-size: 15px;
}

.ayuda-warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.ayuda-warning-box-title {
    font-family: 'Futura Std', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #f57c00;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ayuda-warning-box-title::before {
    content: '⚠️';
    font-size: 20px;
}

.ayuda-warning-box p {
    margin: 0;
    font-size: 15px;
    color: #666666;
}

/* Back Button */
.ayuda-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-family: 'Futura Std', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.ayuda-back-btn:hover {
    border-color: #9FC11F;
    color: #9FC11F;
    transform: translateX(-5px);
}

.ayuda-back-btn svg {
    transition: transform 0.3s ease;
}

.ayuda-back-btn:hover svg {
    transform: translateX(-3px);
}
