/* Estilos específicos para auditoria.html */

/* --- Hero --- */
.audit-hero-section {
    padding: 150px 0 80px;
    text-align: center;
}

.audit-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.audit-hero-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.audit-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.audit-hero-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.audit-price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3BA776;
}

.audit-price-tag small {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.audit-price-detail {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

.audit-hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.audit-hero-ctas .btn {
    min-width: 200px;
}

/* --- Deliverables Grid --- */
.audit-deliverables-section {
    padding: 60px 0;
}

.audit-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.audit-deliverable-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.audit-deliverable-card:hover {
    border-color: rgba(59, 167, 118, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.audit-deliverable-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3BA776;
    margin-bottom: 12px;
    opacity: 0.6;
}

.audit-deliverable-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.audit-deliverable-card p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
}

/* --- Process Steps --- */
.audit-process-section {
    padding: 60px 0;
}

.audit-process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audit-process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.audit-step-num {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(59, 167, 118, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #3BA776;
}

.audit-step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.audit-step-content p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
}

/* --- Audience Grid --- */
.audit-audience-section {
    padding: 60px 0;
}

.audit-audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.audit-audience-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
}

.audit-audience-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.audit-yes h3 {
    color: #3BA776;
}

.audit-no h3 {
    color: #e06c75;
}

.audit-audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audit-audience-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
}

.audit-yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3BA776;
    font-weight: bold;
}

.audit-no ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e06c75;
    font-weight: bold;
}

/* --- CTA Section --- */
.audit-cta-section {
    padding: 40px 0 60px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .audit-hero-title {
        font-size: 2.2rem;
    }

    .audit-hero-subtitle {
        font-size: 1.05rem;
    }

    .audit-price-tag {
        font-size: 2rem;
    }

    .audit-deliverables-grid {
        grid-template-columns: 1fr;
    }

    .audit-audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .audit-hero-title {
        font-size: 1.8rem;
    }

    .audit-process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}