 
.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;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    animation: itemSlideIn 0.8s ease-out;
}

.pricing-item:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-item:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes itemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bloques de color a la izquierda */
.color-block {
    width: 45%;
    height: 380px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    padding: 40px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-item:nth-child(1) .color-block {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

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

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

.color-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Tarjetas de detalles a la derecha */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    width: 55%;
    margin-left: -80px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-item:hover .info-card {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.plan-description {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}
.more-info {
    font-size: 14px;
    color: #3b82f6;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 24px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.more-info:hover {
    color: #1d4ed8;
    transform: translateX(3px);
}

.divider {
    border-top: 2px solid #e2e8f0;
    margin: 24px 0;
}

.pricing-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.detail-label {
    color: #64748b;
    font-weight: 500;
}

.detail-value {
    color: #0f172a;
    font-weight: 700;
    font-size: 16px;
}

.cta-button {
    width: 100%;
    padding: 16px 24px;
    border: 2px solid #0f172a;
    background: white;
    color: #0f172a;
    font-size: 15px;
    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;
}

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

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

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

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

.cta-button:hover {
    left: 0;
}

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

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

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

@media (max-width: 1024px) {
    .color-block {
        width: 40%;
        height: 320px;
        font-size: 36px;
    }

    .info-card {
        width: 60%;
        margin-left: -60px;
        padding: 40px 30px;
    }

    .plan-title {
        font-size: 24px;
    }
}

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

    .pricing-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .color-block {
        width: 100%;
        height: 240px;
        font-size: 32px;
        border-radius: 16px 16px 0 0;
        margin-bottom: 0;
    }

    .info-card {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        border-radius: 0 0 16px 16px;
        padding: 40px 30px;
    }

    .pricing-item:hover .color-block {
        transform: none;
    }

    .pricing-item:hover .info-card {
        transform: none;
    }

    .plan-title {
        font-size: 22px;
    }

    .detail-row {
        font-size: 14px;
    }

    .detail-value {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

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

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

    .pricing-items {
        gap: 40px;
    }

    .color-block {
        height: 200px;
        font-size: 28px;
        padding: 30px 20px;
    }

    .info-card {
        padding: 30px 20px;
    }

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

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

    .detail-row {
        font-size: 13px;
    }

    .detail-value {
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 13px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 
/* ============================== */
#hero {
    height: calc(52vh - 144px) !important;
}
#hero .carousel-item {
    height: calc(55vh - 114px) !important;
}



/* 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);
}








