/* services.css — Estilos específicos de services.html */

/* Services page */
.h1.fs-hero-services {
    font-size: clamp(2rem, 8vw, 4.5rem);
}

.hero-description-narrow {
    max-width: 500px;
}

.h2-max-800 {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
}

.metodologia-lead {
    color: #a1a1a6;
    font-size: 1.15rem;
    margin-top: 1.5rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.5rem;
    margin-top: 5rem;
    text-align: left;
}

.methodology-card {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.methodology-card:hover {
    background: var(--card-hover-bg);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.methodology-step-label {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.methodology-step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
}

.methodology-step-text {
    color: #a1a1a6;
    font-size: 1.05rem;
    line-height: 1.5;
}

.section-lead-muted {
    color: #6e6e73;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.services-nota-card {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 4vw, 3rem);
    background: #f5f5f7;
    border-radius: 20px;
    border-left: 4px solid var(--accent-color);
}

.services-nota-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.services-nota-header .icon-info {
    flex-shrink: 0;
    margin-top: 2px;
}

.services-nota-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.services-nota-body {
    color: #424245;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.services-nota-kicker {
    font-size: 0.9rem;
    font-weight: 700;
    color: #595959;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.renewal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.renewal-price-box {
    background: #fff;
    border-radius: 14px;
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.8rem);
    border: 1px solid #e5e5ea;
}

.renewal-price-amount {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.3rem;
}

.renewal-price-unit {
    font-size: 1rem;
    color: #595959;
    font-weight: 500;
}

.renewal-price-caption {
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.h3.fs-table-section-title {
    font-size: clamp(1.25rem, 4vw, 2rem);
}

.service-pillar-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-category-tag.subtle-grey {
    color: #595959;
}

/* ===== Comparison Tables ===== */

.compare-wrapper {
    max-width: 1000px;
    margin: 6rem auto 0;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    border-bottom: 2px solid #d2d2d7;
}

.comparison-table th:first-child {
    font-size: 0.95rem;
    color: #86868b;
    font-weight: 600;
}

.comparison-table .col-accent {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.comparison-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #e5e5ea;
    color: #424245;
    font-size: 0.95rem;
}

.comparison-table td:first-child {
    font-weight: 500;
}

.comparison-table .cell-label {
    font-weight: 600;
    color: #1d1d1f;
}

.comparison-table .cell-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.comparison-table .cell-muted {
    color: #86868b;
}

.comparison-table--maint td {
    border-bottom-color: #d2d2d7;
}

.comparison-table--maint th:first-child {
    width: 25%;
}

.comparison-table--design {
    min-width: 900px;
}

.comparison-table--maint {
    min-width: 750px;
}

/* ===== Service Cards ===== */

.services-card-compact {
    padding: 1.2rem;
}

.services-card-img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.services-card-heading {
    margin-bottom: 0.5rem;
}

.services-card-text {
    margin-bottom: 0;
}

/* ===== Pricing & Utility ===== */

.uppercase {
    text-transform: uppercase;
}

.pricing-card-accent {
    border: 2px solid var(--accent-color);
    position: relative;
}

.maintenance-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.maintenance-price-unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8e8e93;
}

/* ===== FAQ Estatico ===== */

.services-faq-section {
    padding: 6rem 0;
}

.services-faq-container {
    margin-top: 4rem;
    text-align: left;
}

.services-faq-item {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5ea;
    padding-bottom: 2.5rem;
}

.services-faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.services-faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.services-faq-answer {
    color: #6e6e73;
    font-size: 1.05rem;
    line-height: 1.6;
}
