.txt_ver{
    color: #2F88D6;
    cursor: pointer;
}

.txt_ver:hover{
    color: #1b6bb1;
}



/* ============================== */
/* =============================== */

/* .container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 70px;
    animation: slideDown 0.8s ease-out;
} */

.header h1 {
    /* font-family: 'Sora', sans-serif; */
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.header p {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
}

/* Grid de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: cardFloat 0.8s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes cardFloat {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Encabezado del servicio con color */
.service-header {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 56px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.service-card:nth-child(1) .service-header {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

.service-card:nth-child(2) .service-header {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
}

.service-card:nth-child(3) .service-header {
    background: linear-gradient(135deg, #3d2817 0%, #2a1810 100%);
}

.service-card:nth-child(4) .service-header {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

.service-card:nth-child(5) .service-header {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
}

.service-card:nth-child(6) .service-header {
    background: linear-gradient(135deg, #3d2817 0%, #2a1810 100%);
}



@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Contenido del servicio */
.service-content {
    padding: 40px;
}

.service-title {
    /* font-family: 'Sora', sans-serif; */
    font-size: 24px;
    font-weight: 700;
    color: #846968;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0052a3;
    font-weight: 700;
    font-size: 16px;
}

.service-card:nth-child(2) .service-features li::before,
.service-card:nth-child(5) .service-features li::before {
    color: #ffc107;
}

.service-card:nth-child(3) .service-features li::before,
.service-card:nth-child(6) .service-features li::before {
    color: #3d2817;
}

.service-features li:hover {
    color: #0f172a;
    transform: translateX(5px);
}

.service-button {
    width: 100%;
    padding: 14px 24px;
    border: 2px solid #0f172a;
    background: white;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    /* font-family: 'Inter', sans-serif; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease;
    z-index: -1;
}

.service-card:nth-child(1) .service-button::before,
.service-card:nth-child(4) .service-button::before {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

.service-card:nth-child(2) .service-button::before,
.service-card:nth-child(5) .service-button::before {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
}

.service-card:nth-child(3) .service-button::before,
.service-card:nth-child(6) .service-button::before {
    background: linear-gradient(135deg, #3d2817 0%, #2a1810 100%);
}

.service-button:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-button:hover::before {
    left: 0;
}

.service-button:active {
    transform: translateY(-1px);
}

/* Sección de proceso */
.process-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.process-section h2 {
    /* font-family: 'Sora', sans-serif; */
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: 'Sora', sans-serif; */
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 82, 163, 0.3);
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #0f172a;
}

.step:nth-child(2):hover .step-number {
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #3d2817 0%, #2a1810 100%);
    color: white;
}

.step:nth-child(3):hover .step-number {
    box-shadow: 0 10px 25px rgba(61, 40, 23, 0.3);
}

.step-title {
    /* font-family: 'Sora', sans-serif; */
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.cta-section h2 {
    /* font-family: 'Sora', sans-serif; */
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    padding: 18px 50px;
    background: white;
    color: #0052a3;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 36px;
    }

    .header p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-header {
        height: 200px;
        font-size: 48px;
    }

    .service-content {
        padding: 30px;
    }

    .service-title {
        font-size: 20px;
    }

    .process-section {
        padding: 40px 30px;
    }

    .process-section h2 {
        font-size: 28px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section {
        padding: 40px 30px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    /* body {
        padding: 40px 15px;
    } */

    .header h1 {
        font-size: 28px;
    }

    .header p {
        font-size: 14px;
    }

    .service-header {
        height: 180px;
        font-size: 40px;
    }

    .service-content {
        padding: 25px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    .service-features li {
        font-size: 13px;
    }

    .process-section {
        padding: 30px 20px;
    }

    .process-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 13px;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 14px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







